C++ Program that display your full Name enter by a user
#include <iostream>
using namespace std;
int main()
{
char F_name[10];
char L_name[10];
cout<<"Enter the Your First Name : ";
cin>>F_name;
cout<<"Enter the Your First Name : ";
cin>>L_name;
cout<<F_name<< " "<<L_name<<endl;
return 0;
}
No comments:
Post a Comment