How to write a C program to determine the smallest among
three nos using conditional operator?
Answers were Sorted based on User's Feedback
Answer / sai
#include<stdio.h>
#include<conio.h>
void main()
{
int n1,n2,n3,small;
clrscr();
printf("Enter three numbers");
scanf("%d%d%d",&n1,&n2,&n3);
small=n1<n2?(n1<n3?n1:n3):(n2<n3?n2:n3);
printf("smallest number is:%d",small);
printf("press any key to close");
getch();
}
| Is This Answer Correct ? | 32 Yes | 11 No |
Answer / azad sab;e,chiplun
void main()
{
int n1,n2,n3,small;
clrscr();
printf("Enter three numbers");
scanf("%d%d%d",&n1,&n2,&n3);
small=n1<n2?(n1<n3?n1:n3):(n2<n3?n2:n3);
printf("smallest number is:%d",small);
printf("press any key to close");
}
getch();
}
| Is This Answer Correct ? | 24 Yes | 21 No |
C,c++, Java is all are structural oriented or procedure oriented language..?
Why the use of alloca() is discouraged?
can you explain in brief what is "r+" mode in a file... i know that it si used to read and modify rhe existing content.... but explalanation about the file pointer in "r+" mode i wann to know???????????
how to print the character with maximum occurence and print that number of occurence too in a string given ?
Can you pass an entire structure to functions?
What is sizeof c?
A program to allow an input operand and operator from the operator and read on the display and output operand.
Why doesnt that code work?
Is c compiled or interpreted?
what is difference between ++(*p) and (*p)++
17 Answers Accenture, HCL, IBM,
Which are low level languages?
When should volatile modifier be used?