c-learnings/helloworld.c

8 lines
134 B
C

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