#include<stdio.h> #include<conio.h> void main() { int a,b,sum; clrscr(); printf("Enter two no: "); scanf("%d%d",&a,&b); sum = a+b; printf("Sum : %d",sum); getch(); }
Enter two no: 5 6 Sum : 11
Post a Comment
No comments:
Post a Comment