Answer Posted / avinash jadhav
#include<stdio.h>
#include<conio.h>
#include<math.h>
void main()
{
int num1,num2,sum;
clrscr();
printf("\nEnter the 2 numbers\n");
scanf("%d%d",&a,&b);
sum=num1+num2;
printf("The sum of the two number is %d\n",sum);
getch();
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain how can type-insensitive macros be created?
What is the difference between break and continue?
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
When can a far pointer be used?
what is stack , heap ,code segment,and data segment
Explain what is the concatenation operator?
If fflush wont work, what can I use to flush input?
What does node * mean?
Is exit(status) truly equivalent to returning the same status from main?
What is assert and when would I use it?
Can a file other than a .h file be included with #include?
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
What are types of functions?
Why does notstrcat(string, "!");Work?
Are local variables initialized to zero by default in c?