Strings (Texts)
Strings are text that are enclosed within double quotation marks "". For example, "Hello" "comp@c+", "100 degrees", "a", "5", "88.8", "*", etc.
Remember our first program?
#include <stdio.h>
int main() {
printf("Hello, World!");
return 0;
}
Output
Hello, World!Here, Hello, World! is a text value because we've wrapped it in double quotes.
'' (used for characters) with double quotes "" (used for text).