What will be the output of the below C program.

		
					

Loading

โœช Choose the correct option.

What will be the output of the below C program.


#include
void main()
{
int i;
char a[]="";
if(printf("%s
",a))
printf("Ok Done
");
else
printf("Forget it
");
}

A. Forget it
B. Ok Done
C. Compilation Error
D. None of these