compile c++ program as window installer file

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    compile c++ program as window installer file

    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
    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;
    }
Working...
X