Quantcast
Channel: E Notes » PROGRAMMING IN C++
Viewing all articles
Browse latest Browse all 10

Print The Name

$
0
0
#include<iostream.h>
#include<conio.h>
int main()
{
    char a[30];
    cout<<"what is your name"<<endl;
    cin>>a;
    cout<<"well come:"<<a;
    getch();
    return 0;
}

Viewing all articles
Browse latest Browse all 10

Trending Articles