help to make a library function that will return book.
C in Linux
Collapse
X
-
Tags: None
-
Don't you usually do it the other way around? Return a book to a library? :D LOLOriginally posted by mavishsterhelp to make a library function that will return book.
You need to post more information than that. Also, you have had to try and do the assignment and tell us where you are having trouble. We do not do your HW for you.
AdrianComment
-
If this does not help, you will need to give us more information.Originally posted by mavishsterhelp to make a library function that will return book.
[code=c]
struct book { };
struct book library()
{
struct book newbook;
return newbook;
}
[/code]Comment
-
-
Great to hear. For next time I would suggest you read the Posting Guidelines prior to posting. That way you will not waste your time or ours.Originally posted by mavishstersubject is over. we have done it
AdrianComment
Comment