Problem #03
Design a program in C to model a stack
structure with the following characteristics:
• items are of different data types
• Has a push function that adds one new item to
the top of the stack
• Has a pop function that returns the most top
item of the stack and removes the item from the
stack structure.
• Has a clear function to delete all items
Problem #04
• Design a program in C to read a CSV file and
print all of its contents
• Design a program in Python to read a CSV file
and print all of its contents
myData - Notepad
File Edit Format View Help
time, signall, signal2, time, signal3
0,1,1,0,4
1,2,4,2,8
2,3,9,3,15
3,3,9,5,16
3,4,16
4,5,25