C/first-program.c

11 lines
94 B
C

#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("Henry Olson\n");
return 0;
}