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