0% found this document useful (0 votes)
23 views9 pages

Software Intallation

The document outlines the steps to install software and create a new C++ project in Code::Blocks, including selecting options, clicking buttons, and creating and running a simple Hello World program.

Uploaded by

M K Khaing
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
23 views9 pages

Software Intallation

The document outlines the steps to install software and create a new C++ project in Code::Blocks, including selecting options, clicking buttons, and creating and running a simple Hello World program.

Uploaded by

M K Khaing
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 9

Software Intallation

1.Next button

2.I agree button


3. Next button

4. Install
5.Install

6. Yes button
7. Next button

8. Finish button
9.Codeblocks project create
“create a new project” click

10. box console application


11. “Skip this page next time” checkbox file
Next button

12.C++ Next button


13.Program title Folder to create project in:
Next button

14. box GCC compiler auto


Finish button
15.Code blocks Source
main.cpp double click

16. main()

Program 1.1
#include <iostream>
using namespace std;
int main()
{
cout << "Welcome Myanmar!" << endl;
cout << "I'm C++ developer"<<endl;
cout << "Hello\n\n";
cout << "Myanmar";
return 0;
}

*******************************************

You might also like