Posts

A Basic C Program

//Program To Find The Addition Of Two Numbers// #include<stdio.h> #include<conio.h> void main() {                  int a,b,sum;                  clrscr();                  printf("Enter The Value Of a : ");                  scanf("%d",&a);                  printf("Enter The Value Of b : ");                  scanf("%d",&b);                  sum=a+b;                  printf("The Sum Of a And b : ");                  getch(); }                  And Here Is The Basic "C" Program To Find The Addition Of Two Numbe...