Read Time:31 Second
In this tutorial, you can learn about the dev C++ software and learn how to print any name, number on screen.
Code:
#include<iostream>
#include<conio.h>
using namespace std;
int main()
{ cout<<“\n\t>>>>>>>>>>> Print Name And Detail >>>>>>>>>>>>>>>”;
cout<<“\n\n\tWebsite Name: \t\t ElectSoft “<<endl;
cout<<“\tFacebook Page:\t\t WWW.FACEBOOK.COM/ELECTSOFT07″<<endl;
getch();
return 0;
}
Result:

Average Rating