what is case sensitivity? | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
0

what is case sensitivity?

which are following variableis legal in c++ ?

13th Sep 2016, 7:29 AM
Mohit Saralkar
Mohit Saralkar - avatar
5 ответов
+ 4
Case sensitive means that there is a distinction between lowercase and uppercase. For example, "Qwerty" is not the same as "qwerty". Case insensitive is the opposite.
13th Sep 2016, 8:37 AM
Zen
Zen - avatar
+ 1
case sensitive means ,in c++ a and A is different. means capital and small letters are different
13th Sep 2016, 1:18 PM
Twinkle Baisane
Twinkle Baisane - avatar
+ 1
capital and small letters are different. A and a is different
30th Sep 2019, 5:49 AM
Twinkle Baisane
Twinkle Baisane - avatar
0
case sensitive means small letters (a-z called lower case alphabets) and capital letters(A-Z called upper case letters) will be like 2 different forms of letters for the c++ compiler eg: if u use int mohit in the programme you should continue with int mohit, incase u type int MOHIT the compiler will treat it as another identifier.
18th Oct 2016, 3:47 PM
Giridhar V B
- 1
when we want to declare negative values it is better to use signed.It take both -ve and +ve values.but unsigned only takes +ve
13th Sep 2016, 8:12 AM
susmitha gummadi
susmitha gummadi - avatar