I was surfing at something yesterday and had a fond recall of C Programming back in 1998 college days. Just wrote a small Hello World online, compiled it and am sharing the same as a fond memory through Gist of GitHub.
#includemain(){printf("Hello World from LavanyaDeepak");printf("\n");}
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
main() | |
{ | |
printf("Hello World from LavanyaDeepak"); | |
printf("\n"); | |
} |
No comments:
Post a Comment