+ 11
What is case sensitivity in C++
2 Answers
+ 14
case sensitivity means there is a big differenece between capital and small letters
//U cannot use them interchangably
+ 4
If you have
A = 2
a = 5
then A is not equal to a
This is called case sensitivity. Variables having capital letters and small letters are different..