Here c++ codes and projects are presented. The codes are simple to learn basic programming concepts (for beginners). And also some interesting projects are presented.
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;
}
No comments:
Post a Comment