When should I use single quotes and double quotes in C or C++ programming?
Single quotes are characters (char), double quotes are null-terminated strings (char *).
char
char *
char c = 'x'; char *s = "Hello World";