Choose Category
# include <stdio.h> void main() { int a, b, big ; printf("Enter 2 numbers : ") ; scanf("%d %d", &a, &b) ; big = a > b ? a:b; // if a is bigger then, a will be the biggest number else b will be the biggest. printf("\nThe biggest number is : %d", big) ; }