#include <stdio.h> void main() { int n = 2; if (n == 2) printf("Hey "); else printf("How are u? "); printf("Hello "); }
Hey Hello
Previous Question Next Question
Your comments will be displayed only after manual approval.