When to use Single quote and double quote in C programming ?
|
|
In C and in C++ single quotes identify a single character, while double quotes create a string literal. 'a' is a single a character literal, while "a" is a string literal containing an 'a' and a null terminator (that is a 2 char array). Note that in C, the type of a character literal is |
|||||||||||||||
|
|
Some compilers also implement an extension, that allows multi-character constants. The C99 standard says:
This could look like this, for instance:
The resulting constant (in GCC, which implements this) has the value you get by taking each character and shifting it up, so that 'I' ends up in the most significant bits of the 32-bit value. Obviously you shouldn't rely on this in platform-independent code. |
|||||
|
|
Single quotes are characters (
|
|||
|
|
|
Single quotes are for a single character. Double quotes are for a string (array of characters). You can use single quotes to build up a string one character at a time, if you like.
|
|||
|
|
|
Double quotes are for string literals, e.g.:
Single quotes are for single character literals, e.g.:
EDIT As David stated in another answer, the type of a character literal is |
|||||||||||
|
|
In C single quotes such as 'a' indicate character constants whereas "a" is an array of characters, always terminated with the 0 character |
||||
|
|
|
I was poking around stuff like: int cc = 'cc'; It happens that it's basically a byte-wise copy to an integer. Hence the way to look at it is that 'cc' which is basically 2 c's are copied to lower 2 bytes of the integer cc. If you are looking for a trivia, then printf("%d %d", 'c', 'cc'); would give: 99 25443 that's because 25443 = 99 + 256*99 So 'cc' is a multi-character constant and not a string. Cheers |
|||
|
|
|
Use single quote with single char as:
here Use double quote with strings as:
here Its okay to use |
|||
|
|