c-course/c-basic/hello.c

6 lines
96 B
C
Raw Normal View History

2025-03-18 13:58:35 +03:00
#include <stdio.h>
2025-06-16 21:32:07 +03:00
void hello() {
printf("Hello C Programming Language 2025 Examples\n");
2025-03-18 13:58:35 +03:00
}