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


Please Help Members By Posting Answers For Below Questions

Is Exception handling possible in c language?

1590


Is exit(status) truly equivalent to returning the same status from main?

593


When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?

597


Explain how can I avoid the abort, retry, fail messages?

599


why wipro wase

1842






#include #include struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

5225


What is the difference between mpi and openmp?

744


What are the types of type specifiers?

629


process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,

1896


What is the right type to use for boolean values in c? Is there a standard type?

572


Do you know what are bitwise shift operators in c programming?

597


How do you use a pointer to a function?

645


How can you increase the size of a statically allocated array?

626


How can I do graphics in c?

603


What is the purpose of realloc()?

681