9 lines
112 B
C
9 lines
112 B
C
// A program that says hello to the world
|
|
|
|
#include <stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
printf("hello, world\n");
|
|
}
|