12345678910



Question 1: Which of the following statements are correct about the below program?
#include<stdio.h>
int main()
{
int i = 10, j = 20;
if(i = 5) && if(j = 10)
printf("Have a nice day");
return 0;
}

1. Output: Have a nice day
2. No output
3. Error: Expression syntax
4. Error: Undeclared identifier if