Mega Code Archive
Categories
/
C
/
Stdio H
Printf %s for string
#include
int main() { printf("%s","hello world\n"); char *phrase = "Hello again!\n"; printf("%s",phrase); return 0; }