#include <stdio.h> int main() { int p = 4; int q = 1; int R = (q == 1) ? p :(p > q) ? (q = 1): p; printf("%d\n", q); }
1
Previous Question Next Question
Your comments will be displayed only after manual approval.