+ 1
What is the difference between (Pascal Case) and (Camel Case) in c++? [SOLVED]
What is the difference between (Pascal Case) and (Camel Case) in c++?
8 ответов
+ 4
Pascal case would be:
string s = "HiMyNameIsCeePlusPlus";
The first letter is capitalized
Camel case would be:
string s = "hiMyNameIsCeePlusPlus";
The first letter is NOT capitalized
It's the same with all different programming language.
+ 2
BiBo _Playz if I am correct, that is the only difference
+ 2
Thanks for the answers, CeePlusPlus!
+ 2
BiBo _Playz you’re welcome :)
+ 1
So Pascal case is a subset of Camel case so to say.
Thx, Martin Taylor, didn't know that!
+ 1
CeePlusPlus is there any difference except that camel case start with a lower case letter and pascal case start with upper case letter? or is it just a name that doesnt affect the variable?