Header menu

_________________________________________________________________________________

Saturday 2 September 2017

Hello World !! in C++

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

using namespace std;
int main()
{
    cout<< "Hello World! Welcome to C++";
    getch();
    return 0;
    }

No comments:

Post a Comment