1 2 3 4 5 6 7 8 9
#include <stdio.h> static char msg[] = "hello world\n"; int main() { printf("%s", msg); return 0; }