+ 4
How to display inputted data to another function body in C language
Im making library system management and I my program there is add librarian my problem is when I add librarian I cannot display in to view librarian
3 ответов
+ 11
I think maybe the function (where you are adding a librarian) could not be returning anything.
When you call the function it only adds the librarian but does not return the values that have been input. Ensure it returns the librarian after being input.
Hope this helps you
+ 5
Well show us your code
+ 1
Show me the code