Click here to Skip to main content
15,906,645 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: How to change the size and position of the controls after the dailog is resized? Pin
Moak1-May-07 4:18
Moak1-May-07 4:18 
QuestionDoubt regarding OpenSSL headers Pin
Pruthvidhar18-Apr-07 3:26
Pruthvidhar18-Apr-07 3:26 
AnswerRe: Doubt regarding OpenSSL headers Pin
Mark Salsbery18-Apr-07 5:58
Mark Salsbery18-Apr-07 5:58 
QuestionApp disappearing from Task Panel Pin
CosminU18-Apr-07 3:22
CosminU18-Apr-07 3:22 
AnswerRe: App disappearing from Task Panel Pin
Blake Miller18-Apr-07 8:14
Blake Miller18-Apr-07 8:14 
QuestionRe: App disappearing from Task Panel Pin
sthotakura18-Apr-07 8:19
sthotakura18-Apr-07 8:19 
AnswerRe: App disappearing from Task Panel Pin
CosminU18-Apr-07 21:40
CosminU18-Apr-07 21:40 
Questionhelp with arrays Pin
klutez12318-Apr-07 3:17
klutez12318-Apr-07 3:17 
I am looking for help how to output a chart into the arrays, all i was given was that i need to put a loop inside of a loop. The chart given is:

0 0 0 0
0 1 2 3
0 2 4 6
0 3 6 9

This is what I have so far:

<br />
// Compiler Directives<br />
#include "stdafx.h"<br />
#include "pattern.h"<br />
#include <br />
#include <br />
#include <br />
#include <br />
#include <br />
<br />
// Global Declarations<br />
using namespace std;<br />
CWinApp TheApp;<br />
<br />
/*****************************************************<br />
* MAIN *<br />
*****************************************************/<br />
<br />
int main()<br />
{<br />
int j;<br />
int i;<br />
int test_score[4][4];<br />
<br />
for(i = 0; i < 4; i++)<br />
{<br />
for(j= 0; j < 4; j++)<br />
{<br />
test_score[i][j] = 0;<br />
cout<< test_score[i][j];<br />
}<br />
<br />
cout<<endl;<br />
}<br />
<br />
<br />
return 0;<br />
}  <br />

AnswerRe: help with arrays Pin
CPallini18-Apr-07 3:23
mveCPallini18-Apr-07 3:23 
AnswerRe: help with arrays Pin
David Crow18-Apr-07 3:28
David Crow18-Apr-07 3:28 
AnswerRe: help with arrays Pin
John R. Shaw18-Apr-07 4:13
John R. Shaw18-Apr-07 4:13 
AnswerRe: help with arrays Pin
malaugh18-Apr-07 9:06
malaugh18-Apr-07 9:06 
QuestionCatch WM_WINDOWPOSCHANGED message! Pin
bosfan18-Apr-07 3:03
bosfan18-Apr-07 3:03 
QuestionRe: Catch WM_WINDOWPOSCHANGED message! Pin
Mark Salsbery18-Apr-07 6:06
Mark Salsbery18-Apr-07 6:06 
AnswerRe: Catch WM_WINDOWPOSCHANGED message! Pin
bosfan18-Apr-07 21:51
bosfan18-Apr-07 21:51 
GeneralRe: Catch WM_WINDOWPOSCHANGED message! Pin
Mark Salsbery19-Apr-07 8:12
Mark Salsbery19-Apr-07 8:12 
QuestionWin32 socket program error Pin
Syamlal S Nair18-Apr-07 2:59
Syamlal S Nair18-Apr-07 2:59 
AnswerRe: Win32 socket program error Pin
Cedric Moonen18-Apr-07 3:13
Cedric Moonen18-Apr-07 3:13 
GeneralRe: Win32 socket program error Pin
SoonKil Ryu18-Apr-07 3:55
SoonKil Ryu18-Apr-07 3:55 
GeneralRe: Win32 socket program error Pin
Syamlal S Nair18-Apr-07 17:37
Syamlal S Nair18-Apr-07 17:37 
AnswerRe: Win32 socket program error Pin
syampj18-Apr-07 20:02
syampj18-Apr-07 20:02 
GeneralRe: Win32 socket program error Pin
Syamlal S Nair18-Apr-07 22:34
Syamlal S Nair18-Apr-07 22:34 
QuestionHow to return parameters from DLL ? Pin
Nikhil Trivedi18-Apr-07 2:03
Nikhil Trivedi18-Apr-07 2:03 
AnswerRe: How to return parameters from DLL ? Pin
CPallini18-Apr-07 2:28
mveCPallini18-Apr-07 2:28 
GeneralRe: How to return parameters from DLL ? Pin
Nikhil Trivedi18-Apr-07 3:12
Nikhil Trivedi18-Apr-07 3:12 

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.