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 page thrashing?
How can you determine the maximum value that a numeric variable can hold?
What are pointers? What are stacks and queues?
What is 02d in c?
Explain what is the best way to comment out a section of code that contains comments?
How does pointer work in c?
Describe static function with its usage?
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
What is NULL pointer?
What is LINKED LIST? How can you access the last element in a linked list?
Under what circumstances does a name clash occur?
What is null in c?
Explain how can I convert a number to a string?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
What are the different data types in C?