#include <stdio.h> void main() { int num1 = 12; int num2 = 10; int num3 = num1 < num2 ? num1 = num2 : num2++; printf("%d", num3); }
10
Previous Question Next Question
Your comments will be displayed only after manual approval.