answersLogoWhite

0


Best Answer

Because when have varialbles var1 and Var1, they are actually different variables. The same ides with operators, data and so on .

User Avatar

Wiki User

14y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

7y ago

"Case sensitive" means that upper case and lower case letters are treated as separate letters of the alphabet when used in a program so that the names like "filename" "Filename" "FileName" and "FILENAME" would not be considered the same name. This differs from case insensitive languages where an upper case and lower case versions of a letter mean the same thing and can be used interchangeably in variable names and program structures so that names like "filename" "Filename" "FileName" and "FILENAME" would all refer to the same value. However upper and lower case letters would still be different when used in quoted character strings.

"Case sensitive" means that things like variable and function names need to be spelled with the same uppercase/lowercase spelling as the way you declared them.

int factorial(int number) {

// These two lines will cause compile time errors, since neither "Number" nor

// "NUMBER" exist within our scope.

if( Number <= 1 ) {

return NUMBER;

}

// This line will also fail, since there is no function definition of FACtorIAL.

return number * FACtorIAL(number);

// (Ignore the fact that the code will never get here).

// These variable definitions are all valid, as they are all considered

// different from each other and from the "number" parameter.

int NUMBER, Number, NuMbEr;

}

This answer is:
User Avatar

User Avatar

Newtum Solutions

Lvl 5
1y ago

Yes, the C Programming language is case-sensitive. This means that uppercase and lowercase letters are considered distinct and separate in C.

For example, the variables "num" and "Num" would be considered two different variables in C, even though they differ only by the capitalization of the first letter. Similarly, the functions "printf" and "Printf" would be considered different functions in C.

It is important to be mindful of case sensitivity when writing C code, as errors can occur if variables or functions are referenced using the wrong capitalization.

This answer is:
User Avatar

User Avatar

Wiki User

13y ago

yes c programming is case sensitive every upper case and lower case character has different meaning .exp name and NAME are different.

This answer is:
User Avatar

User Avatar

Wiki User

10y ago

Yes, C++ is case sensitive.

This answer is:
User Avatar

User Avatar

Wiki User

14y ago

Yes.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Is c plus plus language case sensitive?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How about c and c plus plus are they case sensitive?

Yes. C and C++ are case sensitive, although, depending on implementation, external symbols might not be case sensitive.


Is “C language” case sensitive programminIs “C language” case sensitive programming language If yes why and if no whyg language If yes why and if no why?

C is case sensitive, which means that, for example, $var and $VAR are not the same variable.


What is one fact anout c language?

It is case-sensitive.


Is the identifiers 'name' and 'NAME' different in c?

Yes they is different, C language are case-sensitive.


Whether HTML is case sensitive or C?

HTML is not case-sensitive, while C is a case-sensitive language. In HTML, the tags, attributes, and values can be written in uppercase or lowercase letters, and it will still be interpreted the same way by the web browser. For example, the &quot;p&quot; tag can be written as or , and both will be interpreted as paragraph tags. On the other hand, C is a case-sensitive language, which means that the identifiers such as variables, function names, and keywords must be written in the correct case. For example, &quot;main&quot; is different from &quot;Main&quot; and &quot;MAIN&quot; in C. It's important to keep in mind the case sensitivity rules while coding in these languages to avoid syntax errors or unexpected behavior.


Is it possible to declare a keyword as an identifier in c plus plus?

No. Keywords are reserved and cannot be used as identifiers. However, C/C++ is case-sensitive. So although register is a reserved keyword, Register is not.


In computer language C plus plus is related to?

C++ is related to C, the language from which it is derived.


What are the interpreter in c plus plus?

C++ is a compiled language, not an interpreted language.


Is c plus plus a complied or interpreted language?

C++ is generally a compiled language.


Is C plus plus a high level language?

Yes, C++ is a high-level language.


Who is the owner of c plus plus language?

Bjarne Stroustrup is the author of C++. However, no one "owns" this language.


What is the significance of c plus plus?

C++ is an object oriented programming language