c-learnings/helloworld.c
2021-03-07 13:30:19 +11:00

8 lines
134 B
C

#include <stdio.h>
int main() {
int me = 69;
printf("hello world.\n");
printf("%d", me);
printf("\n");
return 0;
}