Problem statement
Write a c program to store values using link list, your program should store the values in order they are entered and the print the values. total number of inputs will be given by user,
for example
total number of integer you will enter 5
1
2
3
5
1
then your program should print
1
2
3
5
1
and store in the same manner only, i.e. the number which will be entered in the list will be in the last of the list
Problem statement Problem: Write a 'C' program to find Volumes of: i) Sphere ii) Cube iii) Cone You need to accept character from user for choice of figure. Characters for figure are as 'S' for Sphere, 'C' for Cube and 'D' for Cone. According to figure chosen, Accept radius/height/side for figures from user. Compute the volume according to the given values and print the volume.
Problem Statement
Write a c program to store information about students using link list
you should store information about his name,age,height ,
(this is a test program if you understand how to do this program then you can store any number of information)