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
Do string constants represent numerical values?
How to delete a node from linked list w/o using collectons?
What is a pointer variable in c language?
Explain what is the difference between a string and an array?
Do pointers take up memory?
Can you write the function prototype, definition and mention the other requirements.
Which node is more powerful and can handle local information processing or graphics processing?
How can I change the size of the dynamically allocated array?
What is the size of enum in c?
What is the difference between the = symbol and == symbol?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
What is file in c language?
show how link list can be used to repersent the following polynomial i) 5x+2
Explain how do you use a pointer to a function?
Can you mix old-style and new-style function syntax?