find largest of 3 no
Answers were Sorted based on User's Feedback
Answer / aravind
#include<stdio.h>
int main()
{
int a,b,c,d;
printf("enter the numbers");
scanf("%d,%d,%d",&a,&b,&c);
if(a>b&&a>c)
printf("a is greater");
if(b>a&&b>c)
printf("b is greater");
else
printf("c is greater");
}
| Is This Answer Correct ? | 13 Yes | 2 No |
Answer / g.ravi teja
#include<stdio.h>
int main()
{
int a,b,c;
printf("enter the numbers");
scanf("%d,%d,%d",&a,&b,&c);
if(a>b&&a>c)
printf("a is greater");
if(b>a&&b>c)
printf("b is greater");
else
printf("c is greater");
}
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / deepshree sinha
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c;
printf("enter any three numbers");
scanf("%d %d %d",&a,&b,&c);
if(a>b)
{
if(a>c)
printf("the biggest no.=%d",a);
else
printf("the biggest no.=%d',c);
}
else
{
if(b>c)
printf("the biggest no.=%d",b);
else
printf("the biggest no.=%d",c);
}
getch();
}
| Is This Answer Correct ? | 4 Yes | 0 No |
#include<stdio.h>
main()
{
int n1,n2,n3,big;
printf("Enter 3 No.=");
scanf("%d %d %d",&n1,&n2,&n3);
if(a>b)
big=a;
else
big=b;
if(c>big)
big=c;
printf("\n Largest No is=%d",big);
getch();
}
}
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / udayakumarswamy
#include<stdio.h>
main()
{
int a,b,c;
clrscr();
if(a>b&&a>c)
{
printf("a is bigger than b and c");
}
else if(b>c)
{
printf(" b is bigger than a and c");
}
else
{
printf("c is bigger than a and b");
}
getch();
}
| Is This Answer Correct ? | 5 Yes | 2 No |
Answer / manish soni bca 3rd year jaipu
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c,max;
printf("Enter any 3 no");
scanf("%d %d %d",&a,&b,&c);
max=a>b?(a>c?a:c):(b>c?b:c);
printf("%d",max);
getch();
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / guest
#include<stdio.h>
main()
{
int num1,num2,num3,num4,num5;
clrscr();
printf("Please enter five numbers:");
scanf("%i,%i,%i,%i,%i",&num1,&num2,&num3,&num4,&num5);
if(num1>num2,num3,num4,num5)
{
printf("this number is the largest %i",num1);
}
else if(num2>num1,num3,num4,num5)
{
printf("this number is the largest %i",num2);
}
else if(num3>num2,num4,num5,num1)
{
printf("this number is the largest %i",num3);
}
else if(num4>num1,num2,num3,num5)
{
printf("this is the largest number %i",num4);
}
else if(num5>num1,num2,num3,num4)
{
printf("this is the largest number %i",num5);
}
getch();
}
| Is This Answer Correct ? | 0 Yes | 0 No |
What is a const pointer, and how does it differ from a pointer to a const?
Write a program to produce the following output in c language? 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
How can you tell whether a program was compiled using c versus c++?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
What is the difference between formatted&unformatted i/o functions?
void main(int argc,char *argv[],char *env[]) { int i; for(i=1;i<argc;i++) printf("%s",env[i]); }
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
Explain void pointer?
print pattern 1 1 33 33 555 555 77777777 555 555 33 33 1 1
What do header files do?
Why malloc is faster than calloc?