Sunday, 22 September 2013

TO ADD TWO NUMBER IN C PROGRAM



FILE ->NEW

#include<stdio.h>
#include<conio.h>
void main()
    {
int a,b,c;
scanf("%d%d",&a,&b);
c=a+b;
printf("%d",c)
;
getch();
}


OUTPUT


No comments:

Post a Comment