MIPI_AdvancedC_FRTK/Lect6/main.c
2024-11-14 08:45:50 +03:00

9 lines
149 B
C

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