+ 1
Is c++ a case sensitive language
2 Réponses
+ 4
Kandukuri Harinayan
Have you tried to use searchbar?
Plz use search bar aand read this before asking any questions..
https://code.sololearn.com/W0uW3Wks8UBk/?ref=app
See this what I got after searching..
https://www.sololearn.com/Discuss/3003542/?ref=app
https://www.sololearn.com/Discuss/533738/?ref=app
https://www.sololearn.com/Discuss/794435/?ref=app
quick quide..
C++ is a case-sensitive language. This means that uppercase and lowercase letters are treated as different characters.
For example, "Help" and "help" are two different variables in C++.
0
Yup, c++ is a case-sensitive language.
case-sensitive means that if you add two variables 'a' & 'A' , both are different from each other , uppercase and lowercase alphabets both are different from each other .
eg. int a;
int A;
A=10;
a=9;
cout<<A;
output* - 10