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