C++, C and C# console

There's two way to run your C++,C and C3 project.
How to run (for small program)
Open your
cpp
,cs
orc
file.

2. Choose built-in compiler.

3. After that click the run button.

Output:

How to run (using terminal root needed)
If your device is not rooted please don't root it it will harm your devices as always do your own research.
Click the terminal icon in the left corner of your tab. (ensure you already install termux on your device else you need to download it before proceeding to this steps.)

2. Type cd
and hold the text on your screen and click paste and hit enter.

3. Install the compiler (if you already did this you skip this step on your next file run)
A. Type pkg update && pkg upgrade -y
and hit enter.
B. After installing type pkg install clang -y
and hit enter.
When clang
is install you can now compile C/C++ scripts.
4. Type ls
and hit enter.
5. Type clang yourfile.c
and hit enter.
6. Type ./a.out
and hit enter.
Last updated