Why it is called middle level language because it has the power of low level and high level languages Wrinting a first program in c language is so easy. u first have to write its code then compile in a compiler which creates it executable file to run. What u need to write and compile a C language program.
1: A compiler for eg (Borland C++ Compiler v5)
this compiler also compile with c compatibality. it also includes its built it editor on which u write your code. After getting this compiler or any other that suits u write the following code.
CODE
#include <stdio.h>
#include <conio.h>
void main (void)
{
clrscr(); //Clears the screen
printf("Write Your Here"); //Prints the text in Quatations
getch(); //waits for a key to press
}
#include <conio.h>
void main (void)
{
clrscr(); //Clears the screen
printf("Write Your Here"); //Prints the text in Quatations
getch(); //waits for a key to press
}
Description Of Program::>>
Above Prgram Simply Prints the text written under the quatation marks now i explain what each line mean in the program
first of all forget these statements right now #include <some_name>
what clrscr do it clears your dos screen
printf prints the text inside the quatation marks
getch wait until the is presses
When u write this u have to compile and link it so an executable file is made of your program when u run this program tell me what u experianced.
Also need more Help Just ask Here In this Topic .

