9 lines
121 B
C
9 lines
121 B
C
#include <stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
const char *hello = "Hello, World!";
|
|
printf("%s\n", hello);
|
|
|
|
return 0;
|
|
} |