i m new to c++ from yesterday i had started learning
here is my c++ program that i want to compile into window instillation file so that on clicking myfristcfile.exe my progam could run
here is what i had made
here is my c++ program that i want to compile into window instillation file so that on clicking myfristcfile.exe my progam could run
here is what i had made
Code:
#include<iosteam.h> #include <stdio.h>//supprotd in turbo C++ int main(){ crlscr();// to clear the screen int n1,n2; cout<<" Enter ur frist name"; cin>>n1; cout<<" Enter ur last name"; cin>>n2; if(n1&&n2) { cout<<" your name is:"<<n1<<n2; }