write a c program to find biggest of 3 number without
relational operator?

Answer Posted / keerthana

include<stdio.h>
include<conio.h>
void main()
int a,b,c;
clrscr();
printf("enter the three values:")
scanf("%d%d%d",&a,&b,&c)
if(a>b&a>c);
{
printf("a is big")
}
else
if (b>a&b>c)
{
printf("b is big")
}
else
printf("c is big");
getch();
}

Is This Answer Correct ?    6 Yes 19 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

ATM machine and railway reservation class/object diagram

5039


How can I trap or ignore keyboard interrupts like control-c?

848


What happens if a header file is included twice?

833


What is && in c programming?

932


How can I manipulate individual bits?

823


Write a program to print fibonacci series without using recursion?

867


What are the modifiers available in c programming language?

1010


FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.

1554


How do we open a binary file in Read/Write mode in C?

994


When should you not use a type cast?

908


How many data structures are there in c?

864


What is dynamic variable in c?

822


What are the valid places to have keyword “break”?

861


Is it better to use malloc() or calloc()?

871


What is the value of c?

812