Monday 22 April 2013

Simple Code To Show Your Name or Sentence on Screen

Code

#include<iostream>
#include<conio.h>
using namespace std;
int main()
{
    cout<<"My name is junaid\nThis is my first program\nC++ is my fovourite language\nits interface is good\n";
    cout<<"I love working on c++\n";
    getche();
    return 0;
    }

Output




No comments:

Post a Comment