No.. C is a space insensitive language . We can add spaces where ever we want inside the program excluding the pre-defined keywords.
Read moreIs C++ a case sensitive language explain?
C++ is a case-sensitive programming language so, all the keywords must be in lowercase. Case sensitive means that the uppercase and lowercase letters are considered differently.
Read moreHow do you make C not case sensitive?
To make strncmp case-insensitive, use strncasecmp from #include <strings. h> . strncasecmp can be used in exactly the same way as strncmp. Note that both of these will not deal with unicode characters correctly, but will work just fine in most applications.
Read moreWhat are case sensitive words?
If a written word such as a password is case-sensitive, it must be written in a particular form, for example using all capital letters or all small letters, in order for the computer to recognize it . [computing]
Read moreIs C case sensitive or not?
In programming languages Some programming languages are case-sensitive for their identifiers (C, C++, Java, C#, Verilog, Ruby, Python and Swift).
Read moreWhy is C case sensitive?
Originally Answered: Why is C called a case sensitive programming language? Because it is aware of lower and upper case . This means that “myCar”, “MyCar” and “mycar” are three distinct tokens.
Read more