Programming Reference/Librarys
Question & Answer
Q&A is closed
Pointer to a type FILE
#include <stdio.h> /* including standard library */ //#include <windows.h> /* uncomment this for Windows */ int main ( void ) { int c=66; fputc(c, stdout); return 0; }
./stdout.c B