This program is about checking and print the smallest number among given two numbers using Conditional operators in C
#include<stdio.h> int main() { int a,b; printf("\nEnter the First value:"); scanf("%d",&a); printf("\nEnter the Second value:"); scanf("%d",&b); a>b?printf("First value is Smallest :%d",a):printf("Second value is Smallest :%d",b); return 0; }To download raw file Click Here
Enter the First value: 3 Enter the Second value: 5 First value is Smallest : 3
Learn All in Tamil © Designed & Developed By Tutor Joes