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
Explain what is the difference between text files and binary files?
Does free set pointer to null?
Explain what will the preprocessor do for a program?
Explain threaded binary trees?
How was c created?
Why is c platform dependent?
Explain what are global variables and explain how do you declare them?
Why c is called procedure oriented language?
What is difference between array and structure in c?
When should a far pointer be used?
What is indirection? How many levels of pointers can you have?
Describe explain how arrays can be passed to a user defined function
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
How many types of arrays are there in c?
How can I call fortran?