Answer Posted / deepanshu dubey
#include<stdio.h>
#include<conio.h>
#include<math.h>
main()
{
int a,b,c;
printf("Enter two numbers\n");
scanf("%d%d",&a,&b);
c=a+b;
printf("%d\n",c);
}
| Is This Answer Correct ? | 8 Yes | 2 No |
Post New Answer View All Answers
In C language, a variable name cannot contain?
What are the disadvantages of c language?
How can I split up a string into whitespace-separated fields?
Define Spanning-Tree Protocol (STP)
What is volatile c?
Describe the order of precedence with regards to operators in C.
what is the difference between 123 and 0123 in c?
When should the const modifier be used?
Why is structure padding done in c?
What is boolean in c?
When is a null pointer used?
How can I list all of the predefined identifiers?
Is there a built-in function in C that can be used for sorting data?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
Write a program to use switch statement.