+ 3
How can you make a program that prints your name as output
3 Respuestas
+ 2
Finish your c++ course first you will be able to code this by yourself.
It all has to do with print syntax in a programming language.
Read this...
https://www.sololearn.com/learn/CPlusPlus/1604/
+ 2
You can also make an input of the user so that they enter their specific names
cout << "Enter your name\n";
cin >> TheUsersName;
cout << TheUsersName;
+ 1
Cout<<"Muhammad";