Predict the Output:

int main()
{
fprintf(stdout,"Hello");
return 0;
}
 Answer:


Error,stdout is undeclared
Hello will be printed in console
Hello will be print in stdout.c file

Related Posts