Search:

Type: Posts; User: Glorfindel-RW

Search: Search took 0.00 seconds.

  1. fin.getline(fin , s); getline is a member,...

    fin.getline(fin , s);

    getline is a member, similarly to get.
  2. Replies
    4
    Views
    1,582

    I believe you would be looking for something...

    I believe you would be looking for something along these lines...



    objVaraus *pList[31];
    objVaraus *pVaraus = new objVaraus;

    pList[0] = pVaraus;

    cout << "\n" << pVaraus << "\n";
  3. Replies
    5
    Views
    1,477

    check out:...

    check out:
    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vccelng/htm/class_26.asp
  4. Replies
    3
    Views
    1,263

    The answer is easily googled... but here I go...

    The answer is easily googled... but here I go anyhoo.

    For a radix sort you take the least significant digit...
    IE: for the number 405, the 5.

    You make a group of linked lists for each least...
  5. Replies
    4
    Views
    1,463

    Since a string is really an array of characters,...

    Since a string is really an array of characters, you could read in each char from the string untill a , is encountered.

    If you encounter a quotation, do not read it in to the new string, but...
Results 1 to 5 of 5