Search Blog

Huwebes, Enero 17, 2013

1st C/C++ PROGRAM


This is how to simply print "Hello World!" in C/C++ compiler.

If you don't have C/C++ compiler I referred to download Bloodshed (Dev - C++) compiler just visit http://www.bloodshed.net/devcpp.html or just click this link Bloodshed.


Code:

#include <stdio.h>
#include <conio.h>

int main(){
    
    printf(" Hello World! "); 
    
    getch();
    return 0;
}

Walang komento:

Mag-post ng isang Komento