C is a general-purpose programming language created by Dennis Ritchie at Bell Labs in 1972.
It is popular because it is fast, widely supported, and helps you understand how programs work "under the hood".
The main reason for its popularity is because it is a fundamental language in the field of computer science.
C is closely connected to UNIX, because much of UNIX was written in C.
C is often used to create programs that need to run fast and work closely with the computer.
C is often used in everyday programming tasks, like showing a message to a user:
#include <stdio.h>
int main() {
char name[] = "John";
printf("Hello %s", name);
return 0;
}
#include <stdio.h>
int main() {
printf("Hello World!");
return 0;
}
If you want to run C programs on your own computer, you need two things:
The compiler reads your C code and translates it into machine code.
There are many editors and compilers available. To make things easier, most people use an IDE, which includes both.
No reviews yet. Be the first to review this course!
Enroll in your desired course
Copyright © 2026 DITRP INDIA. All Rights Reserved