6 lines
91 B
C
6 lines
91 B
C
|
void puts(char *);
|
||
|
int main(int argc, char **argv) {
|
||
|
puts("break here\n");
|
||
|
return 0;
|
||
|
}
|