Search:

Type: Posts; User: Aakash Datt

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Thread: Sorting...

    by Aakash Datt
    Replies
    4
    Views
    1,323

    Those sorts messes up the index (...

    Those sorts messes up the index ( sLastname[index] ) I need the original index to display the information about that peson.
  2. Thread: Sorting...

    by Aakash Datt
    Replies
    4
    Views
    1,323

    Sorting...

    Can someone help me with sorting lastnames alphabetically?
  3. Thread: Matrices

    by Aakash Datt
    Replies
    2
    Views
    1,464

    Matrices

    Does anyone know where I can find the source code that does adding, subtract, multiplying, and dividing matrices by overloading operators and using vectors and arrays?

    I'm learning it and the...
  4. Thread: Problem

    by Aakash Datt
    Replies
    12
    Views
    1,890

    Can someone do it for me...cuz I can't...

    Can someone do it for me...cuz I can't...
  5. Thread: Problem

    by Aakash Datt
    Replies
    12
    Views
    1,890

    I changed it, but it still doesn't work......

    I changed it, but it still doesn't work...
    Student.obj : error LNK2001: unresolved external symbol "public: void __thiscall Student::Quicksort(class std::basic_string<char,struct...
  6. Thread: Problem

    by Aakash Datt
    Replies
    12
    Views
    1,890

    Attached is the code...

    Attached is the code...
  7. Thread: Problem

    by Aakash Datt
    Replies
    12
    Views
    1,890

    What does this mean?

    Student.obj : error LNK2001: unresolved external symbol "public: void __thiscall Student::Quicksort(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > *,int)"...
  8. Thread: Problem

    by Aakash Datt
    Replies
    12
    Views
    1,890

    *New* Problem

    Say I have an array and I want to sort it alphabetically...how would I do that? Does anyone have the code?
  9. Thread: ARg!

    by Aakash Datt
    Replies
    18
    Views
    2,596

    Please help me with the error above...(vector.h...

    Please help me with the error above...(vector.h is not my program)
  10. Thread: ARg!

    by Aakash Datt
    Replies
    18
    Views
    2,596

    :confused:

    :confused:
  11. Thread: ARg!

    by Aakash Datt
    Replies
    18
    Views
    2,596

    How do I separate the student from the ID from...

    How do I separate the student from the ID from the grade using getline?
  12. Thread: ARg!

    by Aakash Datt
    Replies
    18
    Views
    2,596

    This doesn't work :(

    #include <iostream>
    #include <fstream>
    #include <sstream>
    using namespace std;

    int main()
    {
    string filename = "words.txt";
    ifstream input;
    input.open(filename.c_str());
  13. Thread: ARg!

    by Aakash Datt
    Replies
    18
    Views
    2,596

    If I don't use struct, how else can I store their...

    If I don't use struct, how else can I store their information such as grade, id number, grade, and course? Also, can I have an array inside a struct?
  14. Thread: ARg!

    by Aakash Datt
    Replies
    18
    Views
    2,596

    Misunstanding The file must be in the...

    Misunstanding

    The file must be in the following format:
    Joe Blog,45478,9
    Math,89,78
    Science,78,89
    ;
    Andy Allen,00012,12
    Science,89,48
    Math,78,69
  15. Thread: ARg!

    by Aakash Datt
    Replies
    18
    Views
    2,596

    What's a node?

    What's a node?
  16. Thread: ARg!

    by Aakash Datt
    Replies
    18
    Views
    2,596

    How do I do that? Also, I can't seem to make...

    How do I do that?
    Also, I can't seem to make struct work in a class...where should I put it?
  17. Thread: ARg!

    by Aakash Datt
    Replies
    18
    Views
    2,596

    ADVICE!

    I'm designing a student class that reads from a file for the name, ID, grade, and courses[first and second semester]. The file will look like this:

    Joe Blog,45478,9
    Math,89,78
    Science,78,89
    ;...
  18. Replies
    0
    Views
    972

    ...

  19. Replies
    2
    Views
    3,883

    Formatting Output

    What can I do to line up the following:


    Num:1: move disk 1 from 1 to 3.
    Num:2: move disk 2 from 1 to 2.
    Num:3: move disk 1 from 3 to 2.
    Num:4: move disk 3 from 1 to 3.
    Num:5: move disk 1...
  20. Thread: A tragedy!

    by Aakash Datt
    Replies
    4
    Views
    2,002

    ...

    O.K.
    I changed the program around and it gave me a weird number...


    #ifndef _FRACTION_H
    #define _FRACTION_H
    #include <iostream>
    using namespace std;

    class Fract
  21. Thread: A tragedy!

    by Aakash Datt
    Replies
    4
    Views
    2,002

    A tragedy!

    I'm getting this infamous error when i try to compile this...


    fraction\fraction.h(18) : fatal error C1001: INTERNAL COMPILER ERROR
    (compiler file 'msc1.cpp', line 1786)
    ...
  22. Thread: Fractions

    by Aakash Datt
    Replies
    8
    Views
    2,371

    Trouble

    O.K. When I try to separate my program into header, imple, and client, it gives me 100 errors. And also, if I use #include <iostream>, it gives me errors.
    Can anyone separate this for me?


    ...
  23. Thread: Fractions

    by Aakash Datt
    Replies
    8
    Views
    2,371

    ...

    [code]
    #ifndef _FRACTION_H
    #define _FRACTION_H

    #include <iostream>




    class Fraction
  24. Thread: Fractions

    by Aakash Datt
    Replies
    8
    Views
    2,371

    Errors...

    When I use the following header,



    #ifndef _FRACTION_H
    #define _FRACTION_H

    friend Fract operator+ (Fract first, Fract second);
    friend Fract operator- (Fract first, Fract second);
    friend...
  25. Thread: Fractions

    by Aakash Datt
    Replies
    8
    Views
    2,371

    Fractions

    Hi,
    I'm writing a Fraction class that overloads the operators +, -, *, /. But I'm not sure where to the overloaded operators...




    Here's my fraction.h

    class Fraction
    {
Results 1 to 25 of 31
Page 1 of 2 1 2