Click here to Skip to main content
15,903,854 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionHow to Add Notification icon? Pin
KSagar23-Oct-09 0:57
KSagar23-Oct-09 0:57 
AnswerRe: How to Add Notification icon? Pin
Rajesh R Subramanian23-Oct-09 1:06
professionalRajesh R Subramanian23-Oct-09 1:06 
AnswerRe: How to Add Notification icon? Pin
Kushagra Tiwari23-Oct-09 1:07
Kushagra Tiwari23-Oct-09 1:07 
QuestionWS_CHILD CWnd WS_HSCROLL WS_VSCROLL display Problem Pin
rob_toutant23-Oct-09 0:11
rob_toutant23-Oct-09 0:11 
AnswerRe: WS_CHILD CWnd WS_HSCROLL WS_VSCROLL display Problem Pin
Hans Dietrich23-Oct-09 3:32
mentorHans Dietrich23-Oct-09 3:32 
QuestionMatrix Addition Pin
ratprita22-Oct-09 23:13
ratprita22-Oct-09 23:13 
QuestionRe: Matrix Addition Pin
CPallini22-Oct-09 23:18
mveCPallini22-Oct-09 23:18 
QuestionRe: Matrix Addition Pin
David Crow23-Oct-09 2:56
David Crow23-Oct-09 2:56 
ratprita wrote:
I want to add 2 matrices (2 dimensional), using 2 methods.


Does this get you started:

void main( void )
{
    int A[2][3] =
    {
        {0,1,2},
        {9,8,7}
    };
     
    int B[2][3] =
    {
        {6,5,4},
        {3,4,5}
    };
  
    int C[2][3];
  
    for (int x = 0; x < 2; x++)
    {
        for (int y = 0; y < 3; y++)
            C[x][y] = A[x][y] + B[x][y];
    }
}


"Old age is like a bank account. You withdraw later in life what you have deposited along the way." - Unknown

"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons


AnswerRe: Matrix Addition Pin
jianzhuhuai23-Oct-09 5:20
jianzhuhuai23-Oct-09 5:20 
Questionwhat is tab area? Pin
jianzhuhuai22-Oct-09 23:03
jianzhuhuai22-Oct-09 23:03 
AnswerRe: what is tab area? Pin
CPallini22-Oct-09 23:23
mveCPallini22-Oct-09 23:23 
GeneralRe: what is tab area? Pin
jianzhuhuai23-Oct-09 5:14
jianzhuhuai23-Oct-09 5:14 
QuestionRe: what is tab area? Pin
David Crow23-Oct-09 2:59
David Crow23-Oct-09 2:59 
QuestionWriting contacts into outlook Pin
Anil Kumar.Arvapalli22-Oct-09 21:56
Anil Kumar.Arvapalli22-Oct-09 21:56 
AnswerRe: Writing contacts into outlook [modified] Pin
Nuri Ismail22-Oct-09 22:10
Nuri Ismail22-Oct-09 22:10 
AnswerRe: Writing contacts into outlook Pin
Kushagra Tiwari23-Oct-09 0:37
Kushagra Tiwari23-Oct-09 0:37 
Questionfind angle Pin
ankit_akku22-Oct-09 21:48
ankit_akku22-Oct-09 21:48 
AnswerRe: find angle Pin
Iain Clarke, Warrior Programmer22-Oct-09 22:20
Iain Clarke, Warrior Programmer22-Oct-09 22:20 
AnswerRe: find angle Pin
theCPkid22-Oct-09 22:46
theCPkid22-Oct-09 22:46 
JokeRe: find angle Pin
Cedric Moonen22-Oct-09 22:56
Cedric Moonen22-Oct-09 22:56 
JokeRe: find angle Pin
CPallini22-Oct-09 23:15
mveCPallini22-Oct-09 23:15 
AnswerRe: find angle Pin
Chris Losinger23-Oct-09 4:41
professionalChris Losinger23-Oct-09 4:41 
Questionfatal error LNK1120: 1 unresolved externals [modified] Pin
NarVish22-Oct-09 21:29
NarVish22-Oct-09 21:29 
AnswerRe: fatal error LNK1120: 1 unresolved externals Pin
theCPkid22-Oct-09 21:46
theCPkid22-Oct-09 21:46 
QuestionRe: fatal error LNK1120: 1 unresolved externals Pin
Nuri Ismail22-Oct-09 21:48
Nuri Ismail22-Oct-09 21:48 

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.