Write a C program to find the smallest of three integers,
without using any of the comparision operators.
Answer Posted / eswaran
Sorry this is wrong answer....
| Is This Answer Correct ? | 3 Yes | 5 No |
Post New Answer View All Answers
What do you know about the use of bit field?
What is indirection? How many levels of pointers can you have?
Define circular linked list.
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What is the 'named constructor idiom'?
What is volatile variable in c?
What is a 'null pointer assignment' error?
What is a global variable in c?
How can I access an I o board directly?
What is the difference between pure virtual function and virtual function?
Explain what are the different file extensions involved when programming in c?
What is the c language function prototype?
Where we use clrscr in c?
What are the different categories of functions in c?
What are the 5 data types?