Answer Posted / aswani
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c;
clrscr();
printf("enter the two numbers");
scanf("%d %d ",&a,&b);
c=a+b;
printf("%d sum is",c);
getch();
}
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
Write a Program to find whether the given number or string is palindrome.
What is an example of structure?
What is this infamous null pointer, anyway?
What does node * mean?
Explain Function Pointer?
Is int a keyword in c?
What is the role of && operator in a program code?
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
Why is C language being considered a middle level language?
why we wont use '&' sing in aceesing the string using scanf
What is structure pointer in c?
What is the meaning of c in c language?
Write a program to swap two numbers without using third variable in c?
When a c file is executed there are many files that are automatically opened what are they files?
What is pointer to pointer in c language?