0

How c++ is case sensitive?

20th Mar 2022, 6:13 AM
Gite Vaishnavi
Gite Vaishnavi - avatar
2 odpowiedzi
+ 5
You can use two or more variables in different cases (upper/lower) & they all will be treated differently. Ex- int A = 3; int a = 6; cout<<a; // 6 cout<<A; // 3
20th Mar 2022, 6:20 AM
zexu knub
zexu knub - avatar