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 does %p mean c?
How to calculate sum
#define d 10+10 main() { printf("%d",d*d); }
consider the following program sigment int n,sum=1; switch(n) { case 2:sum=sum+2; case 3:sum*=2; break; default:sum=0;} if n=2, what is the value of sum a.0 b.6 c.3 d.none
Tell me a C program to display the following Output? 1 1 1 1 1 2 2 2 2 3 3 3 4 4 5
Write a Program to accept different goods with the number, price and date of purchase and display them
Is linux written in c?
What is structure and union in c?
Implement a function that returns the 5th element from the end in a singly linked list of integers in one pass.
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
Explain high-order and low-order bytes.