#include <stdio.h> const int n = 10, m = 12; int main() { int P = 10; switch (P) { case n: printf("Yes..."); case m: printf("No...\n"); break; } }
Yes... No...
Previous Question Next Question
Your comments will be displayed only after manual approval.