C++ Program that display your full Name enter by a user - 6 Players blogs for technology

give us your feedback

People Online

Breaking

ads

Post Top Ad

Thursday, October 24, 2019

C++ Program that display your full Name enter by a user

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

ads1

Post Top Ad