Apply Now :

Sum of Two No. Example in C

Monday, 12 December 2011

/* C Program Sum of Two No. Example
Calibre IT & Management Institute
[ Krishna Suman ]
*/

#include<stdio.h>
main()
{
int A, B, Sum ;
clrscr();
printf("\n Enter First No. : ");
scanf("%d",&A);
printf("\n Enter Second No. : ");
scanf("%d",&B);
Sum = A + B ;
printf("\n Sum of two No. : %d",Sum);
getch();

}





Share this Article on :

1 comment:

Post a Comment