computers

to spread the knoweldge of computers to all arount  


   home
   1st step for begenors
   2nd step(basic)
   3rd chapter
   advanced
   history



C programming

History:-c language was developed by 'Denis rieche'.To understand other programming i think c is the basic for them.

starting:-see this sample program:

#include<stdio.h>

main

{

int a,b,sum;

clrscr();

printf("enter first number");

scanf("%d",a);

printf("enter second number");

scanf("%d",b);

sum=a+b;

printf("%d",sum);

getch();

}

see the program carefully....