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 |
If an old women's age is the same as her three grand daughters i,mean the number of days old child=the no of weeks old child=no of months old child .The total yrs of all these ppl is 114 yrs...then how old is the old woman? the yr has 365 days..and 30 days each month.
write a program in c language for the multiplication of two matrices using pointers?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
what is the difference between unix os and linux os
What is the purpose of Scanf Print, getchar, putchar, function?
Define circular linked list.
. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none
to get a line of text and count the number of vowels in it
What is meant by gets in c?
What are c identifiers?
What is a memory leak? How to avoid it?
What are the application of c?