12345678910



Question 1: What will be the output of the program ?

#include<stdio.h>

int main()
{
int i;
char a[] = "";
if(printf("%s", a))
printf("The string is not empty ");
else
printf("The string is empty ");
return 0;
}

1. The string is not empty
2. The string is empty
3. No output
4. 0