Program to find larger of the two numbers without using if-else,while,for,switch
Answer Posted / jesica schoartzerneger
You are in wrong.
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
Why does the call char scanf work?
How can I trap or ignore keyboard interrupts like control-c?
What is ## preprocessor operator in c?
Do you know the use of 'auto' keyword?
What is the function of this pointer?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
What are the types of pointers in c?
How does #define work?
What is wrong with this program statement?
what value is returned to operating system after program execution?
Tell me is null always defined as 0(zero)?
What is double pointer?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
What is a static function in c?