Program
#include<stdio.h>
#include<conio.h>
void main()
{
int a=5, b=5, c=a+b;
clrscr();
printf("Sum of Two Numbers = %d",c);
getch();
#include<conio.h>
void main()
{
int a=5, b=5, c=a+b;
clrscr();
printf("Sum of Two Numbers = %d",c);
getch();
}
Output
Sum of Two Numbers = 10
2 Comments
Good 💔
ReplyDeleteThanks
DeleteIf You Have Any Doubt, Please Let Me Know,