Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

1. What object do you use to repreent a file in C? A. FILE* B. fopen printf D. F

ID: 3764540 • Letter: 1

Question

1. What object do you use to repreent a file in C? A. FILE* B. fopen printf D. Fprintf 2. Before vou can read or write to a file in C, what do you need to do? A. Call fopen on the file B. Create the file C. Call fclose on the file D. Use fprintf 3.In which numbering system can the binary number 1011011111000101 be easily converted to? B. Hexadecimal system A. Decimal svstem C. Octal system DNo need to convert 2.CODEEVALUATION#3(30 points;3.5 points each) FILL IN THE BLANKS 1. The goal of this code is to reverse the order of a linked list by literally adjusting the links such that the beginning of the list becomes the end of the list; and the end of the list becomes the beginning of the list. #include struct node Il designate the look of a node structure char data; node next; Node; void print lis of data along the way Il output the char data from each node while (root) l traverse the linked list, printing each piece printf("%e", root root->next; printf("In"); Node*(Node* root) the end I puts null at the start of the list and root at

Explanation / Answer

1. what object do you use to represent a file in c

answer is FILE *

2. Before you can read or write to a file in C, what do you need to do?

call fopen on the file

3.

2.CODE EVALUATION

the answers are below in step by step

typedef

struct

Node*root

root->data

reverse

new_root

root

return