I will be using the visual studio compiler for compiling and running this program.
/*************************************************************** Program to print Hello World to screen ***************************************************************/ #include <stdio.h> int main(int argc, char* argv[]) { printf("Hello World\n"); return 0; } /************************************************************** Output: E:\VSProjs\blog>1_HelloWorld.exe Hello World **************************************************************/
No comments:
Post a Comment