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 double pointer?
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
How many header files are in c?
How do you write a program which produces its own source code as output?
What is call by reference in functions?
What is include directive in c?
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
code for find determinent of amatrix
What are the keywords in c?
differentiate built-in functions and user – defined functions.
Explain what does it mean when a pointer is used in an if statement?
Using which language Test cases are added in .ptu file of RTRT unit testing???
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
How can you find the exact size of a data type in c?