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
What is meant by recursion?
Not all reserved words are written in lowercase. TRUE or FALSE?
Wt are the Buses in C Language
if p is a string contained in a string?
Explain how do you determine the length of a string value that was stored in a variable?
What is the difference between formatted&unformatted i/o functions?
What is the difference between exit() and _exit() function?
Explain null pointer.
What is the difference between printf and scanf in c?
What are void pointers in c?
what is a function method?give example?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
What is the use of pragma in embedded c?
Can you explain the four storage classes in C?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?