Is c++ a case sensitive language | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
+ 1

Is c++ a case sensitive language

23rd Jun 2023, 3:24 PM
Kandukuri Harinayan
2 Respuestas
+ 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++.
23rd Jun 2023, 3:31 PM
Darpan kesharwani🇮🇳[Inactive📚]
Darpan kesharwani🇮🇳[Inactive📚] - avatar
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
25th Jun 2023, 8:51 AM
Alhaaz
Alhaaz - avatar