biggest of two no's with out using if condition statement
Answer Posted / partheeban
void main()
{
float i,j;
int a;
printf("Enter two numbers : ");
scanf("%f%f",&i&j);
a=i/j;
if(a)
printf("%f is greater",i);
else
printf("%f is greater",j);
}
| Is This Answer Correct ? | 2 Yes | 9 No |
Post New Answer View All Answers
Is flag a keyword in c?
Linked lists -- can you tell me how to check whether a linked list is circular?
Is a house a shell structure?
What is pointer to pointer in c language?
What are the functions to open and close file in c language?
What is a structure in c language. how to initialise a structure in c?
What is scope of variable in c?
What are the different types of pointers used in c language?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
What is the size of enum in c?
What is wrong with this initialization?
How the c program is executed?
Write a program to swap two numbers without using third variable in c?
What is the size of array float a(10)?
How can a string be converted to a number?