What is C and how does it works?
C is a low-level and powerful language, learning C requires some degree of understanding how computers really work. In this article, you are going to develop the first program in C. You will learn how the sequence of a C program works.
The C program is a set of functions and always starts executing in a special function which is known as main function . Here the simple program that prints a greeting message "Hello World" on the screen.
Example:
#include <stdio.h>
main()
{
printf("Hello World!\n");
}
Process to compile and run the C program:
Write C program in a text editor (eg. Notepad) and save it as...