📅  最后修改于: 2022-03-11 15:04:34.740000             🧑  作者: Mango
//C program to find Smallest among four numbers using Conditional or ternary operator
#include
void main()
{
// Variable declaration
int a,b,c,d,small;
printf("Enter four number\n");
scanf("%d %d %d %d",&a,&b, &c, &d);
// Smallest among a, b, c and d2
small = ( (a