+ 1
What Is Difference Between 'a' and "a"
Explain me Please In Deep !
6 Réponses
+ 8
Depends on the language, so it would be a good idea to let us know what language you're talking about
+ 3
'a' is a character constant and stored as numeric value of a,
While
"a" is a string and consists of the Characters '\0'
+ 1
No "a" is string and 'a' is character, but it's not enough, I want know more about it
+ 1
In C 'a' is of character data type,. "a" is a type of string literal. When you will compare 'a' and "a" you will get an error as both are of different data types.
0
Anna yes sure and sorry , I'm asking about C language..