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
Explain continue keyword in c
What are identifiers c?
What do you mean by a local block?
Explain pointers in c programming?
What is sizeof array?
Explain what does the function toupper() do?
What is a double c?
What is difference between static and global variable in c?
regarding pointers concept
What is the use of void pointer and null pointer in c language?
write a program to rearrange the array such way that all even elements should come first and next come odd
What is pre-emptive data structure and explain it with example?
What is #pragma statements?
how do you execute a c program in unix.
What is break statement?