Click here to Skip to main content
15,884,388 members
Home / Discussions / ATL / WTL / STL
   

ATL / WTL / STL

 
AnswerRe: How to use .Def File Pin
Richard MacCutchan10-Apr-18 21:02
mveRichard MacCutchan10-Apr-18 21:02 
GeneralRe: How to use .Def File Pin
tasumisra10-Apr-18 21:17
tasumisra10-Apr-18 21:17 
GeneralRe: How to use .Def File Pin
Richard MacCutchan10-Apr-18 21:21
mveRichard MacCutchan10-Apr-18 21:21 
GeneralRe: How to use .Def File Pin
tasumisra11-Apr-18 0:19
tasumisra11-Apr-18 0:19 
GeneralRe: How to use .Def File Pin
Richard MacCutchan11-Apr-18 1:41
mveRichard MacCutchan11-Apr-18 1:41 
GeneralRe: How to use .Def File Pin
tasumisra16-Apr-18 18:53
tasumisra16-Apr-18 18:53 
QuestionRe: How to use .Def File Pin
Richard MacCutchan16-Apr-18 20:50
mveRichard MacCutchan16-Apr-18 20:50 
QuestionAdding two matrix objects and assigning the result to third object using overloaded operators ? Pin
Tarun Jha23-Mar-18 21:17
Tarun Jha23-Mar-18 21:17 
here ih the code below i have tried to add two matrix objects and assign it to the third object but it doesn't give expected result and the rather some garbage value.

include <iostream>
using namespace std;

class matrix{
    int **p;    //pointer to Matrix
    int d1, d2;

public:
    //matrix(){}                  //default constructor
    matrix(int x=20, int y=20);       //parameterised

    void get_element();
    void put_element();
    int checkAdd(matrix &);                                     //to check the feasibility of the operation

    //Rule of three
    matrix operator + (matrix &);
    void operator = (matrix );

    ~matrix(){
        for (int i = 0; i < d1; i++)
            delete p[i];
        delete p;
    }
};

matrix temp;                    //global matrix temp

//=============================================

void matrix::operator = (matrix obj){

    this->d1 = obj.d1;
    this->d2 = obj.d2;
    for(int i=0; i<d1; i++)
        for(int j=0; j<d2; j++)
            this->p[i][j] = obj.p[i][j];

    //put_element();
    //return(*this);
}

matrix matrix::operator+(matrix &obj){
    if(checkAdd(obj)==0)
    {
        //matrix temp;
        for(int i=0; i<obj.d1; i++)
            for(int j=0; j<obj.d2; j++)
                temp.p[i][j] = this->p[i][j] + obj.p[i][j];


        //temp.put_element();
        return(temp) ;
    }

    cout<<"coloumn and rows of both matrix are not equal !"<<endl;
    return (*this);
}

matrix ::matrix(int x, int y)
{
    d1 = x;
    d2 = y;
    p = new int *[d1];                  //creates an array of pointers

    for(int i=0; i<d1; i++)
        p[i] = new int [d2];            //creates row for each row
}

int matrix::checkAdd(matrix &obj){
    if((this->d1 == obj.d1) && (this->d2 == obj.d2))
        return 0;
    else return 1;
}

void matrix::get_element(){
    for(int i=0; i<d1; i++)
        for(int j=0; j<d2; j++){
            cout<<"m["<<i<<"]["<<j<<"] = ";
            cin>>p[i][j];
        }
    //cout<<"Following is your Matrix : \n\n";
    //put_element();
}

void matrix::put_element(){
    cout<<"\n\n";
    for(int i=0; i<d1; i++){
        for(int j=0; j<d2; j++){
            cout<<p[i][j]<<"\t";
        }
        cout<<endl;
    }

}

//=============================================

int main(){
    matrix A(3, 2), B(3, 2), C;                     //matrix objects a constucted

    cout<<"Enter matrix elements row by row \n\n";
    A.get_element();
    A.put_element();

    B.get_element();
    B.put_element();

    C = A + B;
    cout<<"\n\n";
    C.put_element();

    return 0;
}


thank you
AnswerRe: Adding two matrix objects and assigning the result to third object using overloaded operators ? Pin
Richard MacCutchan23-Mar-18 23:34
mveRichard MacCutchan23-Mar-18 23:34 
GeneralRe: Adding two matrix objects and assigning the result to third object using overloaded operators ? Pin
Tarun Jha24-Mar-18 3:58
Tarun Jha24-Mar-18 3:58 
GeneralRe: Adding two matrix objects and assigning the result to third object using overloaded operators ? Pin
Richard MacCutchan24-Mar-18 4:31
mveRichard MacCutchan24-Mar-18 4:31 
GeneralRe: Adding two matrix objects and assigning the result to third object using overloaded operators ? Pin
Tarun Jha24-Mar-18 8:17
Tarun Jha24-Mar-18 8:17 
QuestionWhy the arrow button on TabControl is not working in my MFC application. Pin
Sampath57910-Mar-18 0:35
Sampath57910-Mar-18 0:35 
AnswerRe: Why the arrow button on TabControl is not working in my MFC application. Pin
Richard MacCutchan10-Mar-18 1:07
mveRichard MacCutchan10-Mar-18 1:07 
QuestionHow to change color of Tab View in MFC Pin
Sampath57910-Mar-18 0:01
Sampath57910-Mar-18 0:01 
AnswerRe: How to change color of Tab View in MFC Pin
Richard MacCutchan10-Mar-18 1:07
mveRichard MacCutchan10-Mar-18 1:07 
Questionhow to use getchar() to store n names in an array ? Pin
Tarun Jha26-Dec-17 8:31
Tarun Jha26-Dec-17 8:31 
AnswerRe: how to use getchar() to store n names in an array ? Pin
Richard MacCutchan26-Dec-17 8:46
mveRichard MacCutchan26-Dec-17 8:46 
AnswerRe: how to use getchar() to store n names in an array ? Pin
Rick York26-Dec-17 10:04
mveRick York26-Dec-17 10:04 
GeneralRe: how to use getchar() to store n names in an array ? Pin
Tarun Jha26-Dec-17 20:02
Tarun Jha26-Dec-17 20:02 
Questionhow to initialize a value to pointer ? Pin
Tarun Jha21-Dec-17 9:08
Tarun Jha21-Dec-17 9:08 
AnswerRe: how to initialize a value to pointer ? Pin
Rick York21-Dec-17 9:45
mveRick York21-Dec-17 9:45 
GeneralRe: how to initialize a value to pointer ? Pin
Tarun Jha21-Dec-17 10:20
Tarun Jha21-Dec-17 10:20 
GeneralRe: how to initialize a value to pointer ? Pin
Rick York21-Dec-17 12:25
mveRick York21-Dec-17 12:25 
GeneralRe: how to initialize a value to pointer ? Pin
Tarun Jha26-Dec-17 8:13
Tarun Jha26-Dec-17 8:13 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.