Profile image for Daniel Wilkison daniel.wilkison
prints "hello smipple" to the standard output.
I know it's very simple and corny, but I had to write something for my first time.
Language
C
Tags
c intro stdio.h

hello smipple

1 #include <stdio.h> 2 3 main() 4 { 5 //outputs hello smipple to the standard output. 6 // hey, I gotta start somewhere right!!! 7 printf("hello smipple"); 8 }

Comments