write a c program to find biggest of 3 number without
relational operator?
Answer Posted / manjeeth
void main()
{
int a = 5;
int b = 7;
int c = 2;
int res;
res = (int)(a/b)?a:b;
res = (int)(res/c)?res:c;
printf("big num = %d",res);
}
| Is This Answer Correct ? | 132 Yes | 28 No |
Post New Answer View All Answers
Explain why c is faster than c++?
Why array is used in c?
Is it possible to execute code even after the program exits the main() function?
How do you declare a variable that will hold string values?
Why isn't it being handled properly?
What are the differences between Structures and Arrays?
Explain how do you list a file’s date and time?
Why & is used in c?
How can I remove the leading spaces from a string?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
Are local variables initialized to zero by default in c?
Hi can anyone tell what is a start up code?
Can variables be declared anywhere in c?
How can I prevent another program from modifying part of a file that I am modifying?
Is javascript based on c?