C in Linux

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mavishster
    New Member
    • May 2007
    • 9

    C in Linux

    help to make a library function that will return book.
  • Extremist
    New Member
    • Jan 2007
    • 94

    #2
    Originally posted by mavishster
    help to make a library function that will return book.
    You're not giving anything here, the moment that you give more details and add some of your own attempts, we will be able to help you.
    So add the code you've already written

    Comment

    • AdrianH
      Recognized Expert Top Contributor
      • Feb 2007
      • 1251

      #3
      Originally posted by mavishster
      help to make a library function that will return book.
      Don't you usually do it the other way around? Return a book to a library? :D LOL

      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.


      Adrian

      Comment

      • Motoma
        Recognized Expert Specialist
        • Jan 2007
        • 3236

        #4
        Originally posted by mavishster
        help to make a library function that will return book.
        If this does not help, you will need to give us more information.

        [code=c]
        struct book { };

        struct book library()
        {
        struct book newbook;
        return newbook;
        }
        [/code]

        Comment

        • mavishster
          New Member
          • May 2007
          • 9

          #5
          subject is over. we have done it

          Comment

          • AdrianH
            Recognized Expert Top Contributor
            • Feb 2007
            • 1251

            #6
            Originally posted by mavishster
            subject is over. we have done it
            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.


            Adrian

            Comment

            Working...