C is also known as Compiled Language. It means when you write your C program, you must run it using C compiler. Using this you turn your program into an executable that the computer can execute. The C program is the human-readable form. Whenever you are executing programs that comes out of the compiler is the machine-readable and in executable form. It means that to write and run a C program, you must have access to a C compiler. The Simplest C Program
#include <stdio.h>
int main()
{
printf("This is output from my first program!\n");
return 0;
}
Output : "This is output from my first program!"
The advantages of C
C is one of a large number of high-level languages designed for general-purpose programming.
The reference site for this content is
http://computer.howstuffworks.com/
Back



