C
Programming and Technical
Can you use the function fprintf() to display the output
on the screen?
Read Solution (Total 2)
-
- No,Compiler will give error
- 7 years agoHelpfull: Yes(0) No(0)
- yes, syntax: int fprintf(FILE *stream, const char *format, parameters);
Here stream can be specified to standard output by specifying stdout. This file pointers can be substituted into any file accesing function to get data from these standard devices. - 7 years agoHelpfull: Yes(0) No(0)
C Other Question