Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

W. A.

P FOR ADDITION OF TWO NUMBER

include<stdio.h> #include<conio.h> void main() { int a,b,sum; clrscr(); printf("Enter the value of a and b"); scanf("%d%d",&a,&b); sum=a+b; printf("%d",sum); getch(); }

You might also like