Are there various print formatters for the file object? For example:
// pass the filepath
char * filepath = argv[1];
FILE * file = fopen(filepath, "r");
printf("Filepath: %s\n", file.size);
Error message:
main4.c:416:32: error: no member named 'size' in 'struct __sFILE'
What are the various items that can be printed from the struct?