Header Ads

Hii,I am Anand Nayak.This blogger is make for specially basic programs of some language.

First programe

#include<iostream.h>
#include<conio.h>
void main
{
   char n[10];
   cout<<"Enter your name"<<endl;          //cout use for show data
   cin<<n<<endl;                                       //cin use for read data by user
   cout<<"Your name is:"<<n<<endl;
  cout<<"Hello, We are Devloper."<<endl;
getch();
}

No comments