Answer Posted / neha khurana
#include<stdio.h>
#include<conio.h>
void main()
{
int x,y;
clrscr();
printf("\nEnter the value of any two numbers to be
added\n");
scanf("%d%d",&x,&y);
x=x+y;
printf("%d",x);
getch();
}
| Is This Answer Correct ? | 19 Yes | 55 No |
Post New Answer View All Answers
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
What are identifiers c?
Write a program to swap two numbers without using the third variable?
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
Why isn't it being handled properly?
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
What are the application of void data type in c?
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
How can you avoid including a header more than once?
How can I list all of the predefined identifiers?
What is meant by preprocessor in c?
What is the difference between far and near ?
What is variables in c?
What do you mean by keywords in c?
What are runtime error?