Answer Posted / 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 |
Post New Answer View All Answers
Explain enumerated types in c language?
Tell me what are bitwise shift operators?
Is there a way to jump out of a function or functions?
Where are the auto variables stored?
What are high level languages like C and FORTRAN also known as?
Why doesnt this code work?
What is a header file?
What are the types of pointers in c?
What is the use of c language in real life?
What is the method to save data in stack data structure type?
Tell me the use of bit field in c language?
What is the function of multilevel pointer in c?
What is a structure and why it is used?
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
in linking some of os executables are linking name some of them