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
In a switch statement, explain what will happen if a break statement is omitted?
Explain the bubble sort algorithm.
Why ca not I do something like this?
What are preprocessor directives in c?
Can you apply link and association interchangeably?
What does. int *x[](); means ?
Which is best book for data structures in c?
What do mean by network ?
Which is better malloc or calloc?
Explain the advantages and disadvantages of macros.
Why isn't any of this standardized in c? Any real program has to do some of these things.
How can you call a function, given its name as a string?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
cavium networks written test pattern ..
Describe static function with its usage?