9 lines
103 B
C
9 lines
103 B
C
#include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
printf("I'm main\n");
|
|
|
|
return 0; // with or without same effect
|
|
}
|