C++

RESULT.
1.

2.
   


QUESTION/DISCUSSION.

1. How To.
  • Compilation process.

            First open c++ and write the program

After that, save the project by clicking this icon at the top.


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.


C++ programming is a program that create a general-purpose programming language initially developed by Dennis Ritchie between 1969 and 1973 at AT&T Bell Labs.C++ is one of the most popular programming languages and is implemented on a wide variety of hardware and operating system platforms. As an efficient compiler to native code, its application domains include systems software, application software, device drivers, embedded software, high-performance server and client applications, and entertainment software such as video games.


.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");
}


Conclusion
i learn how to create programming through c++...and i learn how to create a data









No comments:

Post a Comment