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 |
What do header files do?
sum of two integers values only other then integer it should print invalid input.
How can my program discover the complete pathname to the executable from which it was invoked?
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?
how to create c progarm without void main()?
main() { int x, arr[8]={11,22,33,44,55,66,77,88}; x=(arr+2)[3]; printf(“%d”,x); }
How would you write qsort?
64/square(4)
Explain how are 16- and 32-bit numbers stored?
What are valid operations on pointers?
What is wrong with this statement? Myname = 'robin';