C programming is a general-purpose, procedural computer programming language developed in 1972 by Dennis M. Ritchie at the Bell Telephone Laboratories to develop the UNIX operating system. C language is a MUST for students and working professionals to become a great Software Engineer. C programming is considered as the base for other programming languages, that is why it is known as mother language.
Why C Programming?
- Easy to learn
- Structured language
- Produces efficient programs
- Can be compiled on a variety of computer platforms
Application of C
- Operating Systems
- Language Compilers
- Text Editors
- Databases
How to Use
Use any one of the link to directly see it in action in your browser:-
- https://www.programiz.com/c-programming/online-compiler/
- https://www.tutorialspoint.com/compile_c_online.php
- https://www.onlinegdb.com/online_c_compiler
First C Program
#include <stdio.h> //Header File
int main() { //Main Driver Function
printf("Hello, World! \n"); //Print Function to show your message
return 0; // Return integer value
}
Comments
Post a Comment