Additon of two number in C language
additon of two number in C language
Progam:-
#include<stdio.h>
#include<conio.h>
main()
{
int a=8,b=9;
clrscr();
printf("%i+%i=%i",a,b,a+b);
getch();
}
Output:-
17
#include<stdio.h>
#include<conio.h>
main()
{
int a=8,b=9;
clrscr();
printf("%i+%i=%i",a,b,a+b);
getch();
}
No comments
Post a Comment