c++ | c program | c language | c++ online | c++ compiler | online c++ compiler | c compiler | c# | online c compiler

The C programming language is a procedural and general-purpose language that provides low-level access to system memory. A program written in C must be run through a C compiler to convert it into an executable that a computer can run.


C in termux:-

apt update
apt upgrade
pkg install nano clang
nano hello.c
#include<stdio.h>
int main()

{

 printf("hello world");

}
cat hello.c
gcc hello.c
./a.out

C program in termux  video:-



Post a Comment

If you have any doubts. Please comment me

Previous Post Next Post