Mega Code Archive

 
Categories / C / Stdio H
 

Printf %s for string

#include <stdio.h> int main() {    printf("%s","hello world\n");    char *phrase = "Hello again!\n";    printf("%s",phrase);    return 0; }