9 lines
149 B
C
9 lines
149 B
C
|
#include <stdio.h>
|
||
|
#define HELLO_STR "Hello world!\n"
|
||
|
//первая программа
|
||
|
int main (void)
|
||
|
{
|
||
|
printf(HELLO_STR );
|
||
|
return 0;
|
||
|
}
|