MIPI_AdvancedC_FRTK/Lect6/main.c

9 lines
149 B
C
Raw Normal View History

2024-11-14 08:45:50 +03:00
#include <stdio.h>
#define HELLO_STR "Hello world!\n"
//первая программа
int main (void)
{
printf(HELLO_STR );
return 0;
}