write a c program to find biggest of 3 number without
relational operator?
Answer Posted / raheman(papi)khan
#include<stdio.h>
void main()
{
int a,b,c;
printf("enter the value of a b and c");
scanf("%d%d%d",%a,&b,&c);
int max=a;
if(b>max)
max=b;
if(c>max)
max=c;
printf("%d",max);
else
printf("equal");
}
Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
What are the advantages and disadvantages of pointers?
What are the features of the c language?
What is the maximum length of an identifier?
Explain the use of fflush() function?
What are the 5 types of inheritance in c ++?
What is string in c language?
what do you mean by enumeration constant?
what is the height of tree if leaf node is at level 3. please explain
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What is main return c?
Difference between strcpy() and memcpy() function?
Explain what is the use of a semicolon (;) at the end of every program statement?
The statement, int(*x[]) () what does in indicate?
What is a example of a variable?
What is const volatile variable in c?