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
ATM machine and railway reservation class/object diagram
How can I trap or ignore keyboard interrupts like control-c?
What happens if a header file is included twice?
What is && in c programming?
How can I manipulate individual bits?
Write a program to print fibonacci series without using recursion?
What are the modifiers available in c programming language?
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.
How do we open a binary file in Read/Write mode in C?
When should you not use a type cast?
How many data structures are there in c?
What is dynamic variable in c?
What are the valid places to have keyword “break”?
Is it better to use malloc() or calloc()?
What is the value of c?