#include <stdio.h>
char* f

Loading

Choose the correct option.

#include 
char* fun()
{
return "awake";
}
int main()
{
printf("%s",fun()+ printf("I see you"));
getchar();
return 0;
}

 

A. Some string starting with “I see you”
B. awake
C. I see you
D. Compiler Error

Leave a Comment