Can someone help me write a C program that reads integers from the keyboard. The
ID: 3635884 • Letter: C
Question
Can someone help me write a C program that reads integers from the keyboard. The program should then build a linked list in the heap. Each node of the list contains an integer and a pointer to the next node in the list. The final node in the list has anull pointer. The program should insert integers into the front of the list. After end-of-file has been generated by the user, the program uses the list to print out the integers in reverse order of how they were typed in.