MIPI_BaseC_WebinarFRTK/01_Lecture01/00_hello_world_p36.c
2024-11-13 09:22:28 +03:00

13 lines
627 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* Это комментарий.
Он не влияет на работу программы */
// Это тоже комментарий только из одной строки
#include <stdio.h> // Подключаем библиотеку ввода-вывода
int main (int argc, char **argv) // Программа начинается тут. Это точка выполнения программы
{
printf ("Hello world!\n"); // Напечатать текст Hello World!
return 0; // Завершает программу с кодом 0, что все хорошо
} // Конец блока main