SEARCH THE BLOG

Friday, February 1, 2013

C++ program



Probably the best way to start learning a programming language is with a program. So here is our first program:


// my first program in C++

INPUT-

#include <iostream.h>


int main ()
{
                cout << "Hello World!";
     retern 0;
    }
    
     OUTPUT-
        
            HELLO WORLD!

0 comments:

Post a Comment