#include <stdio.h> int main() { unsigned int n = 25; signed char ch = -25; if (n > ch) { printf("Yes\n"); } else if (n < ch) { printf("No\n"); } }
No
Previous Question Next Question
Your comments will be displayed only after manual approval.