1 2 3 4 5 6 7 8 9
#include<stdio.h> int main() { char *s = "Hello world"; printf(s); int x = 10; return 0; }
1
Hello world