10 lines
80 B
C++
10 lines
80 B
C++
#include <stdio.h>
|
|
|
|
|
|
int main ( void )
|
|
{
|
|
puts( "Hello GCC!!!" );
|
|
return 1;
|
|
}
|
|
|