DEV Community

How To Run C Programs on Android

Palash Bauri ๐Ÿ‘ป on August 18, 2018

C is a well known Programming language Created by Dennis Ritchie between 1969 and 1973 atย Bell Labs, since then it has become one of the most wid...
Collapse
 
koouty profile image
Kouty

Is it possible to make this for an unrooted device?

Collapse
 
bauripalash profile image
Palash Bauri ๐Ÿ‘ป

Yes ofcourse. But still Root gives you more flexibility

Collapse
 
koouty profile image
Kouty

There is a problem for me. I am storing my files on sdcard because the device is unrooted. When I type in Termux 'clang filename.c' or 'clang filename.c -o filename', and enter, I have as result '$', no more. But I noticed that if there is an error in code, I have an error message.

It seems strange but one time the code were compiled.
I don't understand what is the problem.

Thread Thread
 
bauripalash profile image
Palash Bauri ๐Ÿ‘ป

Maybe it had Runtime Errors

Thread Thread
 
koouty profile image
Kouty

I don't understand

Thread Thread
 
bauripalash profile image
Palash Bauri ๐Ÿ‘ป

Can you share the source code of your program.
Runtime error are such type of error which can't be detected by compilers, and such error can be noticed while running the program

Thread Thread
 
koouty profile image
Kouty

I tried even the simplest code as hello world. It's running perfectly with Dcoder app.

Thread Thread
 
bauripalash profile image
Palash Bauri ๐Ÿ‘ป

But not compiling with Clang?

Thread Thread
 
koouty profile image
Kouty

Exactly

Thread Thread
 
bauripalash profile image
Palash Bauri ๐Ÿ‘ป

What error does it give?

Thread Thread
 
koouty profile image
Kouty

No error but doesn't compile

Thread Thread
 
bauripalash profile image
Palash Bauri ๐Ÿ‘ป

there must be something to identify the problem, without knowing the bug I can't help you to debug it.

Thread Thread
 
koouty profile image
Kouty

Here is a pasted text from Termux
$ gcc -o mult.c
clang-8: error: no input files
$ clang -o mult.c
clang-8: error:

Thread Thread
 
bauripalash profile image
Palash Bauri ๐Ÿ‘ป

Ah, seems your source code is not in Termux home path. You should copy your mult.c file to Termux home directory

Thread Thread
 
koouty profile image
Kouty

How can I make this?

Thread Thread
 
bauripalash profile image
Palash Bauri ๐Ÿ‘ป

Copy - paste

Thread Thread
 
koouty profile image
Kouty

$ clang -o condition.c
clang-8: error: no input files
$ cd
$ ls
Filename eaain herbe.rb
conditiond.c eaain.c termux-sudo
downloads essain.c
$ pwd
/data/data/com.termux/files/home
$

Thread Thread
 
koouty profile image
Kouty

And this is in the path, right?

Thread Thread
 
bauripalash profile image
Palash Bauri ๐Ÿ‘ป

Ah now I understand.
Just Remove -o and it should work fine.
Do this clang condition.c

Thread Thread
 
koouty profile image
Kouty

I reinstalled Termux, clang and nano to write files. I wrote and saved a file in rb and a file in C. Note that I wrote in the Termux path and here is the result.I can run easily Ruby files but for c I don't reach out the expected result.

Setting up ruby (2.6.5) ...
$ nano simple.rb
$ ruby simple.rb
hello
$ nano simple.c
$ nano simple.c
$ clang nano.c
clang-8: error: no such file or directory: 'nano.c'
clang-8: error: no input files
$ clang simple.c
$ clang simple.c -o simple
$ ls
a.out downloads simple simple.c simple.rb storage
$ clang simple.c
$ clang -o simple.c
clang-8: error: no input files

Thread Thread
 
bauripalash profile image
Palash Bauri ๐Ÿ‘ป

C is a compiled language and It seems simple.c is compiled.
Just Run the binary simple with $ ./simple

Thread Thread
 
koouty profile image
Kouty

It works! So, if I understand, after the clang action, A compiled file is created, and I need to open it with prompting it, the same name of file without the ".c" at the end of the name. And to make this I need to type "./filename". Right?

Thread Thread
 
bauripalash profile image
Palash Bauri ๐Ÿ‘ป • Edited

Partially.
Look, C is a compiled langauge, and Clang is a compiler unlike Python or Ruby which are interpreted language.

When you type the command clang simple.c , clang takes the source code and compiles it into machine code into a.out (a.out is default output name) and to run the program you must execute the binary like this $ ./a.out

And you can name the output binary anything you like by simply passing the -o flag, the syntax is like this :

$clang <SOURCE_CODE> -o <OUTPUT_NAME>

Thread Thread
 
bauripalash profile image
Palash Bauri ๐Ÿ‘ป

@koouty , seems like you're new to C , I would recommend watching some Beginners' Tutorial and Reading some tutorials available on internet.

Thread Thread
 
koouty profile image
Kouty

Many many thanks.

Thread Thread
 
bauripalash profile image
Palash Bauri ๐Ÿ‘ป

If any need any further help you can just DM me

Thread Thread
 
koouty profile image
Kouty

๐Ÿ‘

Collapse
 
pmcgowan profile image
p-mcgowan • Edited

Termux is amazing - I went on a business trip a while back and we got production error emails on a snowy back road in the middle of nowhere. I was able to ssh into the server, grep the log for the error, and push a hotfix with vim over mobile data. The team stopped making fun of me for programming on my phone after that.

I used TerminalIDE on my older rooted Galaxy S3, when Termux wasn't avail for that version (too lazy to re-root). I downloaded CPPDroid, stole the compiler, and modified it to work in the terminal so I could work on my C game at the time using vim. I spent a lot of time commuting to school, so I felt it was a better use of the time.

I still find it amazing that my new phone is more powerful than my old netbook I used to use in school, and invaluable to have a pocket *nix device with me at all times. I even set up a headless driver for ssh web dev on the fly. You get used to the tiny keyboard in time, most people just expect typos in my texts now...

Yeah, you need tiny fingers, but on a Pixel XL it's not the worst

Termux on Android

Collapse
 
imprakharshukla profile image
Prakhar Shukla

Termux is awesome indeed and we here at Andronix love it. Andronix is an open-source, completely ad-free app that lets you install full-fledged Linux distributions on your non-rooted Android device. We utilize the power of Termux ๐Ÿ’™.

Here's an article -

Collapse
 
bauripalash profile image
Palash Bauri ๐Ÿ‘ป • Edited

Your experience was great. I remember last year I compiled the whole metasploit framework for Android (thanks to Termux) and it worked perfectly on multiple android devices. ๐Ÿ˜€

Collapse
 
therishu profile image
Rishu Pandey • Edited

Will you please share how you had done that?

Collapse
 
pmcgowan profile image
p-mcgowan • Edited

Stealing the compiler, or ssh'ing over data?

Either way - same answer. These days I use the Termux app (IIRC not available on iPhone), within which you can install openssh and the gcc toolchain which will allow you to ssh and build c programs just as you would on a nix terminal on any desktop.

When I stole the compiler, I had a rooted phone, installed the C4droid app, then went into it's package folder and looked for the binary and linked lib files, copied those into my home folder, made a small wrapper script that added all the necessary compiler flags, and built the c apps from the TerminalIDE terminal.

It's significantly more work (plus trial and error) doing it that way, and requires rooting your phone. Now, with Termux, it's a simple apt-get install -y build-essentials make gcc ... and apt-get install -y openssh-{client,server}.

EDIT: found the old script - left the comments for myself

usage="\
Usage: $(basename $0) [OPTIONS] FILES [-o OUTPUT]
      --libs  use library settings found in file.stdin
  -h, --help  show this menu
~/c4droid/com.n0n3m4.droidc/files/gcc/bin/arm-linux-androideabi-g++ INPUT -lm -ldl -llog -lz -std=c++11 -Wfatal-errors   -lncurses -I~/c4droid/com.n0n3m4.droidc/files/gcc/arm-linux-androideabi/include/ncurses -Wl,-allow-shlib-undefined
"

LIBS=

if [ "$1" == "-h" ] || [ "$1" == "--help" ]; then
  echo "$usage"
  exit 1
elif [ "$1" == "--libs" ]; then
  LIBS="-lm -ldl -llog -lz -std=c++11 -Wfatal-errors -lncurses -I~/c4droid/com.n0n3m4.droidc/files/gcc/arm-linux-androideabi/include/ncurses -Wl,-allow-shlib-undefined"
  shift
fi

GPP=~/c4droid/com.n0n3m4.droidc/files/gcc/bin/arm-linux-androideabi-g++
#GCC=~/c4droid/com.n0n3m4.droidc/files/gcc/bin/arm-linux-androideabi-gcc

$GPP $LIBS $*
#$GCC $LIBS $*
exit $?

# droidc/files/file.stdin:
# cd /data/data/com.n0n3m4.droidc/files/gcc/tmpdir
# export TEMP=/data/data/com.n0n3m4.droidc/files/gcc/tmpdir
# /data/data/com.n0n3m4.droidc/files/gcc/bin/arm-linux-androideabi-g++ /data/data/com.n0n3m4.droidc/files/temp.c -lm -ldl -llog -lz -I"/storage/emulated/0/.cfiles/intconv" -std=c++11 -Wfatal-errors   -lncurses -I/data/data/com.n0n3m4.droidc/files/gcc/arm-linux-androideabi/include/ncurses -Wl,-allow-shlib-undefined -o /data/data/com.n0n3m4.droidc/files/temp
# echo "errorcode:$?"
# exit
Collapse
 
imprakharshukla profile image
Prakhar Shukla • Edited

Hey Palash, that was a great list indeed. But how about running a dedicated IDE for C on your non-rooted Android device? Andronix allows you to do just that in a few clicks.

Here's an article -

Collapse
 
apongpoh profile image
Apongpoh

$ apt install clang
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package clang is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'clang' has no installation candidate
$

Collapse
 
kushal2528 profile image
Kushal2528

Hey Palash, Firstly Kudos to you for making this great app.. I have a project wherein I need to integerate C compile with my android app within Android studio.. is it possible? I would be grateful could you suggest some hints for the same..

Collapse
 
pillowtalkpres1 profile image
PillowTalk Presents

Hey so I haven't programmed in a very long time last time I did was programming in C using windows api. Would I be able to write my C code using windows api and it still run on Android? Sorry if its a stupid question

Collapse
 
pillowtalkpres1 profile image
PillowTalk Presents

If not how would I create the interface? Sorry im so old lol if you can point me in the right direction that would be great.

Collapse
 
tux0r profile image
tux0r

Hmm. While I generally like the ability to perform C development on Android (thank you for the article!), I can't see myself writing actual code on small touch keyboards. :(

Collapse
 
bauripalash profile image
Palash Bauri ๐Ÿ‘ป

I understand, but it wouldn't be a problem if you want to do some quick prototyping or experiment some little bit.

I wrote this article because a few years ago, I didn't have a computer just an android phone. I started learning to programme using the apps I mentioned above.

I hope above apps will be useful for people who don't have access to computers or want to do some quick prototyping.

Collapse
 
tux0r profile image
tux0r

They surely are! :)

Collapse
 
keizzmann profile image
The_Keizzmann๐Ÿ˜๐ŸŽน๐ŸŽน๐Ÿ’ป

Thank you so much. This is very helpful to me

Collapse
 
_qaplan_ profile image
proqaplan

I tried to install the package of clang in termux but this message showed to me: "unable to locate package clang"
How can i fix this ?