#include<stdio.h>
#include<conio.h>
main()
{
int a,b,sum=0;
clrscr();
printf("Enter two variable:--");
scanf("%d%d",&a,&b);
sum=a+b;
printf("Sum of %d+%d=%d",a,b,sum);
getch();
}
Chat with our AI personalities
To put two or more given values together.
program to find maximum of two numbers using pointers
"What is 3*(-5)" would be such a problem.
The formal way to write 2014 in words is "two thousand fourteen," not "two thousand and fourteen". In addition, it should be all lowercase. A slang version of the same would be "twenty fourteen."
To swap two variables without using a third variable, use exclusive or manipulation... a ^= b; b ^= a; a ^= b;