CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 6 of 6
  1. #1
    Join Date
    Mar 2009
    Posts
    3

    Question help me to write this code

    Hello

    i am having trouble with how to create a database and make the code. if any one can write me the code and send it to my mail box. it would be a great help.

    Write a program that creates a database of Compact Disk (CD) information. Your database will
    consist of the following data elements:
    string CDTitle[50];
    string Artist[50];
    int number_of_songs[50];
    Example or forth entry in CD Database:
    CDTitle[3]: "ABBA Greatest Hits"
    Artist[3]: "ABBA"
    number_of_songs[3]: 12
    Create a useable user interface that allows the user to input data into each CD Entry, modify a
    CD entry, and print out the entire database of CDs.
    Thus a menu MIGHT look like this:
    1.
    Add CD
    2.
    Print out CD list
    3.
    Modify CD entry
    4.
    Quit program
    HINT: You must have some sort of variable that keeps track of the number of CDs entered. This
    will start out at 0 and increment by 1 each time a CD is entered.
    Feel free to add extra features if you wish.

    My email id is : soubhagya.mishra82@gmail.com

    Thank You Very much

    Soubhagya Kumar Mishra

  2. #2
    Join Date
    Jan 2008
    Location
    California, USA
    Posts
    822

    Re: help me to write this code

    please read this

  3. #3
    Join Date
    Mar 2009
    Posts
    3

    Re: help me to write this code

    Hey Thanks for your kind reply. But i really dont intended to make somebody workout my homework. This is a kind of help to me . I am also a developer but i stuck to this point of how to make and compile this code. this is a forum and i never intended somebody to work on my homework.

    Thanks again

    Soubhagya

  4. #4
    Join Date
    Jan 2006
    Location
    Singapore
    Posts
    6,765

    Re: help me to write this code

    Quote Originally Posted by soubhagyamishra
    But i really dont intended to make somebody workout my homework. This is a kind of help to me . I am also a developer but i stuck to this point of how to make and compile this code. this is a forum and i never intended somebody to work on my homework.
    That is commendable, though your initial post made it seem otherwise. So, what have you tried?
    C + C++ Compiler: MinGW port of GCC
    Build + Version Control System: SCons + Bazaar

    Look up a C/C++ Reference and learn How To Ask Questions The Smart Way
    Kindly rate my posts if you found them useful

  5. #5
    Join Date
    Mar 2009
    Posts
    3

    Re: help me to write this code

    Hi

    hey i just dont know how to create a database , i can implement that by classes u know . But i am confused on that point to create a database..thats only my concern .

    Thank You

  6. #6
    Join Date
    Jan 2006
    Location
    Singapore
    Posts
    6,765

    Re: help me to write this code

    Quote Originally Posted by soubhagyamishra
    hey i just dont know how to create a database , i can implement that by classes u know . But i am confused on that point to create a database..thats only my concern .
    There is no need to get intimidated by the word "database" here. It just means that your program will allow for the organised storage and retrieval of data.
    C + C++ Compiler: MinGW port of GCC
    Build + Version Control System: SCons + Bazaar

    Look up a C/C++ Reference and learn How To Ask Questions The Smart Way
    Kindly rate my posts if you found them useful

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured