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
how to find anagram without using string functions using only loops in c programming
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)
What are the 5 types of organizational structures?
Why does notstrcat(string, "!");Work?
Who is the main contributor in designing the c language after dennis ritchie?
Why is this loop always executing once?
How do I read the arrow keys? What about function keys?
What is meant by type specifiers?
Are pointers really faster than arrays?
What are structures and unions? State differencves between them.
What is the difference between c &c++?
Why is not a pointer null after calling free?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
What is return type in c?
What is ambagious result in C? explain with an example.