Cover Image of डाउनलोड C Compiler 1.1 APK

3.1/5 - 1.187 वोट

ID: drops.ccompiler.com

  • लेखक:

  • संस्करण:

    1.1

  • अपर अद्यतन:

अभी एपीके डाउनलोड करें

का वर्णन C Compiler


C compiler is a tool for creating and compiling C programs in android Phones. It will be very much help full for those who are beginners C program
- It is an offline application, so compilation and execution will be so fast as comparing other c compiler apps.
- for the time being only integer operations are allowed. and for looping use while loop only (no for loop in this version).

sample program:
NB: NOT SUPPORTED INLINE INTEGER OPERATIONS (see the examples).

Example 1: Addition of Two Numbers

#include
void main(){
int a,b,sum;
printf("Enter the First Number:");
scanf("%d",&a);
printf("Enter the Second Number:");
scanf("%d",&b);
sum = a+b;
printf("Sum of given Num is :%d",sum); //do not support "printf("Sum is :%d",(a+b));
}

Example 2: Check the given number is odd or even.

#include
void main(){
int a,test;
printf("Enter the value:");
scanf("%d",&a);
test=a%2; //do the operation out side, don't do inline operation like ( if(a%2) ) not allowed right now, will come in next versions.
if(test==0){ // open the braces for all the branch and loop conditions.
printf("Number is Even");
}
else{
printf("Number is Odd");
}
}

और दिखाओ

C Compiler 1.1 APK के लिये Android 1.5+

संस्करण 1.1 के लिये Android 1.5+
अपर अद्यतन 2015-01-01
इंस्टॉल 50.000++
फाइल का आकार 1.780.480 bytes
अनुमतियां अनुमतियाँ देखें
नया क्या है - Bug fixes for unwanted spaces and variable declaration

हिट APK
और दिखाओ