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
write a c program in such a way that if we enter the today date the output should be next day's date.
write a program to concatenation the string using switch case?
What is equivalent to ++i+++j?
How do you define a string?
What is the explanation for modular programming?
Can I initialize unions?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
Describe static function with its usage?
What is f'n in math?
what do you mean by inline function in C?
What is a rvalue?
Explain what is the difference between text files and binary files?
What is the meaning of 2d in c?
What is volatile variable how do you declare it?
Explain bit masking in c?