Download Best Android App C/C++ (GCC) Programming Compiler – Compile and Execute C/C++ Program on Android Platform

This post is for those who are very curious to code but doesn’t have any laptop or computer or want to code from anywhere so just check it out!

In this tutorial, we know about the 2 best android app c/c++ (GCC) programming compiler. These 2 best c/c++ compiler makes steps to compile and execute of c/c++ programs for android platform. 

  1. CPPDroid – C/C++ IDE
  2. C4Droid – C/C++ Compiler and IDE

1. CPPDroid

The c compiler is a great android compiler for android to compile and executes c program, c compiler for android/CPP compiler for android. CPPDroid is a simple yet complete c compiler and IDE apk that helps to learn to program. This app requires a total of 150 MB of internal memory storage space.

Features of CPPDroid Android APK

  • Automatic Code Completion Tool
  • Landscape/Portrait UI
  • Syntax Highlighter
  • Proper Warnings, Errors, and Solutions
  • Dropbox support 
  • Google Drive support
  • Themes for UI
  • Run, Compile C/C++ Programs without Root
  • Offline Compiler
  • C/C++ Code Example and Tutorials
  • Auto Updates and Additional Plugins
  • Automatic Indentations

2. C4Droid 7.00 apk – C/C++ Compiler and IDE

C4droid android apk is available on google playstore for Rs. 149 but you can find it for free here.

Features of C4droid

  1. Offline C/C++ Compiler
  2. Syntax Highlighter
  3. Automatic Code Completion
  4. Export & share your programs as APK or binaries 
  5. Debugger with breakpoints and watches
  6. Automatic Indentations
  7. SDL, SDL2, Qt Support for GUI
  8. No Root required
  9. Complete ANSI C and ISO C99 Support
  10. Customizable GUI
  11. Themes Support
  12. GIT Integration

Two different plugins to be installed with this C4Droid android apk are:

  1. SDL Plugin is also available on google playstore for free and size of 644k. SDL plugin helps in making an effective user interface to work with this apk.
  2. GCC Compiler Plugin is available on google playstore for free and size varies with devices. GCC compiler is a universal compiler to compile c/c++ program. Now, it is available on your android phones as well for free of cost.

You need to download and install both this GCC Plugin and SDL Plugin in order to install C4Droid 7.00 apk free download and here I shared complete steps to download c compiler for android.

Enjoy coding 😊

Complete NM and JAVA Practical Program

Hey, there! don’t worry of practical submissions here you have all the practicals. What you have to do is just make some changes or either if you have already done some programs and stuck at some errors simply check it out here.

Note : You should do program at your own to build logic!!!

Here you can download itπŸ‘‡πŸ» The file contains 10 NM and 20 java programs

Enjoy it!!😊 & Don’t forget to share it with your friendsπŸ‘πŸ»

Also check out our old posts πŸ‘‡πŸ»

How to run applet programs?

Complete VB.NET Program Download

15 August special program!

VB.NET Certificate

If you are suffering at making certificate for project don’t worry here you can get it! Just Download it from below and Edit it

Enjoy it!πŸ˜ƒ

Download visual studio 2010 ultimate

Attention: Follow all the steps correctly!

Step 1 – Click on the iso image and download the file. SIZE of file 2.3GB

Here you can download itπŸ‘‡πŸ»

Step 2 – After downloading Right click on file and mount the image.

Step 3 – After mounting the image, setup will show at the place of CD/DVD drive(In my computer) now open it.

Step 4 – Go to the end of file now you can see 2 setups now open the 3rd setup from the last and install it.

Step 5 – At the end of setup select visual basic language.

Enjoy it!!😊 & Don’t forget to share it with your friendsπŸ‘πŸ»

Also check out our old posts πŸ‘‡πŸ»

How to run applet programs?

15 August special program!

Complete Java Programs

VB.NET Practical Program

Hey, there! don’t worry of practical submissions here you have all the practical. What you have to do is just make some changes or either if you have already done some programs and stuck at some errors simply check it out here.

Attention !! : The output contains my name so you have to do these program at your own

Note : You should do program at your own to build logic!!!

This file contains 20 programs if some programs are missing then find out them

Here you can download itπŸ‘‡πŸ»

Enjoy it!!😊 & Don’t forget to share it with your friendsπŸ‘πŸ»

Also check out our old posts πŸ‘‡πŸ»

How to run applet programs?

15 August special program!

Complete Java Programs

Complete Java Practical Program

Hey, there! don’t worry of practical submissions here you have all the practicals. What you have to do is just make some changes or either if you have already done some programs and stuck at some errors simply check it out here.

Note : You should do program at your own to build logic!!!

Here you can download itπŸ‘‡πŸ» The file contains 20 java programs

Enjoy it!!😊 & Don’t forget to share it with your friendsπŸ‘πŸ»

Also check out our old posts πŸ‘‡πŸ»

How to run applet programs?

15 August special program!

Java Practical Program

Hey, there! don’t worry of practical submissions here you have all the practicals. What you have to do is just make some changes or either if you have already done some programs and stuck at some errors simply check it out here.

Note : You should do program at your own to build logic!!!

Here you can download itπŸ‘‡πŸ»

Enjoy it!!😊 & Don’t forget to share it with your friendsπŸ‘πŸ»

Also check out our old posts πŸ‘‡πŸ»

How to run applet programs?

15 August special program!

Flag program using Applet in Java

In this blog we are going to discuss how we can make and run an applet to draw Indian Flag.

Prerequisites : Java 8 or below version should be installed(which supports appletviewer).

If you don’t where you find this don’t worry just check out our blogs. (How to run java applet programs?)

If you have already above things so come on..

import java.applet.*;
import java.awt.*;
public class Flag extends Applet {
public void paint(Graphics g) {
g.setColor(Color.black);
g.drawOval(10,35,10,10);
g.drawLine(10,40,10,800);
g.drawLine(19,40,19,800);
g.drawLine(370,40,370,290);
g.setColor(Color.orange);
g.fillRect(20,40,350,80);
g.setColor(Color.blue);
int l=0;
int x=195,y=165;
double x1,y1;
double d;
g.drawOval(150,120,90,90);
for(int i=1;i<=24;i++){
d=(double)l*3.14/180.0;
x1=x+(double)42*Math.cos(d);
y1=y+(double)42*Math.sin(d);
g.drawLine(x,y,(int)x1,(int)y1);
l=l+(360/24);
}
g.setColor(Color.green);
g.fillRect(20,211,350,80);
}
}

//<applet code=”Flag.class” width=”300″ height=”300″> </applet>

Write the above line at the end o

After writing/pasting above code now you have to save the file as Flag.java

After saving the program now you have to open cmd prompt and go to the directory where you saved your program.

If you don’t know how change directory note these copy path of flie and write cd Path in cmd and hit enter now your path is changed.

Now you have to compile and run java program you can use

javac filename.java

Hit enter then

appletviewer filename.java

Again hit enter boom your program is running.

If you have any problems doing let me know. Enjoy it!😊 Happy Independence Day