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 facialities provided by you after the selection of the student.
What is a shell structure examples?
Can we add pointers together?
to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
Why dont c comments nest?
What are control structures? What are the different types?
can any one provide me the notes of data structure for ignou cs-62 paper
What is c preprocessor mean?
What is table lookup in c?
Explain how do you override a defined macro?
Why & is used in scanf in c?
a value that does not change during program execution a) variabe b) argument c) parameter d) none
What is 2 d array in c?
in iso what are the common technological language?