/* 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();
}
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();
}


1 comment:
GOOD
Post a Comment