write a c program to find biggest of 3 number without
relational operator?
Answers were Sorted based on User's Feedback
Answer / priyanka
#include<stdio.h>
#include<conio.h>
void main()
int a,b,c;
clrscr();
printf("enter any three no.s");
scanf("%d%d%d",&a,&b&c);
if(a>b&&a>c);
{
printf("a is biggest");
}
else if(b>a&&b>c)
{
printf("b is biggest");
}
else
printf("c is biggest");
getch();
}
| Is This Answer Correct ? | 52 Yes | 105 No |
Differentiate between functions getch() and getche().
Can you write the algorithm for Queue?
0 Answers College School Exams Tests, TCS,
What is clrscr in c?
52.write a “Hello World” program in “c” without using a semicolon? 53.Give a method to count the number of ones in a 32 bit number? 54.write a program that print itself even if the source file is deleted? 55.Given an unsigned integer, find if the number is power of 2?
Identify the correct argument for the function call fflush () in ANSI C: A)stdout B)stdin C)stderr D)All the above
Write a c program to sort six numbers and find the largest one by using the ladder of if-else? plz do help me
How many types of functions are there in c?
input may any number except 1,output will always 1.. conditions only one variable should be declare,don't use operators,expressions,array,structure
What is static identifier?
Consider a language that does not have arrays but does have stacks as a data type.and PUSH POP..are all defined .Show how a one dimensional array can be implemented by using two stacks.
WHAT IS PRE POSSESSORS?
which will return integer? a) int*s ( ) b) ( int* ) s( ) c) int ( *s ) ( )