biggest of two no's with out using if condition statement
Answer Posted / shafi.shaik
main()
{
int a,b;
a=10;
b=20;
clrscr();
if(a/b)
printf("A is Biggest");
if(b/a)
printf("B is Biggest");
getch();
}
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What is auto keyword in c?
What is the advantage of c?
What are c identifiers?
What is hungarian notation? Is it worthwhile?
How does normalization of huge pointer works?
What are examples of structures?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
Tell me is null always defined as 0(zero)?
What is table lookup in c?
What's the total generic pointer type?
Is it possible to have a function as a parameter in another function?
What is #define?
Why doesnt this code work?
There seem to be a few missing operators ..
write a program to print largest number of each row of a 2D array