7 lines
87 B
C
7 lines
87 B
C
|
|
int main() {
|
|
char title[] = "foo and stuff\n";
|
|
printf("%s", title);
|
|
return 0;
|
|
}
|