You are on page 1of 1

Good Day to All!

How are you coping up with your online review classes?


This is a simulation for the next semester. there will be a blended mode of
learning.

This is your programming instructor. Lets start on installing cppdroid to your


phones. So why cppdroid?
Cppdroid is an IDE wherein you can edit and run your c++ code to your phone.

Lets start and go.

Follow the step by step process on Installing CppDroid to your phone.


1. Open Google Play Store (for Android Users) or App Store (for IOS Users).
2. Search for "cppdroid".
3. Click download/install.
4. When download/installation is finished, take a screenshot of your phone.
5. Open CppDroid App on your phone.
6. Encode the following to the Editor part of CppDroid Application:
#include <iostream>
--------> These directives tell the preprocessor how to prepare the program for
compilation. The include directive tells which header files are to be included in
the program and the define directive is usually used to associate an identifier
with a literal that is to be used at many places in the program.

using namespace std;


--------->

int main() -------> The execution of the program always begins with the execution
of the main function. The main function can call any number of other functions,

{
cout<<"Hello World!"<<endl;

return 0;
}
7. Click save button (disk icon) in the CppDroid Application.
8. Click the compile button (flash/thunder icon) in the CppDroid App.
9. Click the run button (play icon) in the CppDroid App to execute the program.
10. When program is correctly executed, take a screenshot of the output.

You might also like