RESULT.
1.
2.
QUESTION/DISCUSSION.
1. How To.
- Compilation process.
First open c++ and write the program
And then Click icon above to enter Compilation process.
And Compilation window will appear. So now it will show how much error it have and click done to finish the Compilation process to check or do a correction.
- Execute the program.
From the Compilation process. Click the ''>>Excute<<'' button to excute the project
and your program show the result. Lastly try to insert data on your project.
2.What is C++ programming.
.How to
a.complation proccess
b. Excute the programming
#include <iostream>
#include <fstream>
using namespace std;
int main(){
ifstream inFile;
inFile.open("game.exe");
if(!inFile){
cout<<"Cannot open file bish."<<endl;
system("pause");
return 1;
}
system("pause");
}
i learn how to create programming through c++...and i learn how to create a data
No comments:
Post a Comment