Multiple choice technology programming languages

Is C++ case sensitive?

  1. No

  2. Case sensitivity is compiler-determined

  3. Yes

  4. None of the Above

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

C++ is case-sensitive, meaning identifiers like 'Main', 'main', and 'MAIN' are treated as completely different symbols. This applies to variable names, function names, keywords, and all other identifiers. The compiler distinguishes strictly by character case.