Discover a wealth of knowledge and get your questions answered at IDNLearn.com. Get comprehensive answers to all your questions from our network of experienced experts.

Write a c++ program for displaying your full name

Sagot :

Explanation:

#include<iostream>

using namespace std;

void main() {

      cout << "Name :: "your name"" << endl;

}

Unless I absolutely forgot how to write codes, this should be how you do it.