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
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
What is a macro, and explain how do you use it?
How do you determine whether to use a stream function or a low-level function?
What is the hardest programming language?
What is dynamic variable in c?
Write a program to print all permutations of a given string.
Can stdout be forced to print somewhere other than the screen?
What is getch?
Is Exception handling possible in c language?
What is function in c with example?
Can you mix old-style and new-style function syntax?
Which is better oop or procedural?
How do we declare variables in c?
If you know then define #pragma?
Can a void pointer point to a function?