9 lines
107 B
C
9 lines
107 B
C
#include <stdio.h>
|
|
|
|
int hello()
|
|
{
|
|
printf("Hello C Programming Language 2025 Examples\n");
|
|
|
|
return 0;
|
|
}
|