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

C / C++ / MFC

 
GeneralRe: VC++ Debugger Pin
Neville Franks24-Sep-03 10:22
Neville Franks24-Sep-03 10:22 
GeneralGetCheck w listboxctrl (has checkboxes) Pin
ns24-Sep-03 9:52
ns24-Sep-03 9:52 
GeneralDialog menu problem... Pin
LukeV24-Sep-03 8:17
LukeV24-Sep-03 8:17 
GeneralRe: Dialog menu problem... Pin
David Crow24-Sep-03 8:22
David Crow24-Sep-03 8:22 
GeneralRe: Dialog menu problem... Pin
LukeV24-Sep-03 8:28
LukeV24-Sep-03 8:28 
GeneralRe: Dialog menu problem... Pin
RChin24-Sep-03 8:46
RChin24-Sep-03 8:46 
GeneralRe: Dialog menu problem... Pin
LukeV24-Sep-03 9:49
LukeV24-Sep-03 9:49 
GeneralNeed help with multi-dim arrays please Pin
Flack24-Sep-03 7:51
Flack24-Sep-03 7:51 
In a header file of one of my classes I have a private two dim array,
<br />
double V[][6] = {<br />
      {-.01,0,0, -.2,-.2,1},  // POINT AND NORMAL<br />
      {.1,0,0, .2,-.2,1},<br />
      {0,.11,0,  -.2,.2,1},<br />
      {.08,.09,0,  .2,.2,1}<br />
   };<br />

but this gives me a compiler error. It says "syntax error : '{'" and
"unexpected token(s) preceding '{'; skipping apparent function body".
Does anyone know why? All I want to do is declare and initialize it.

Also, lets say I have a 3-dim array, (which I cant initialize either until I fix my first problem)
<br />
double polygon[][][] = {<br />
      { V[0], V[1], V[2] },<br />
      { V[1], V[2], V[3] }<br />
   };<br />

and I need a for loop to go thru polygon. I want to do something like:
<br />
for (int n = 0 ; n < polygon.length ; n++)<br />
  for (int i = 0 ; i < polygon[n].length ; i++) {<br />
    for (int k = 0 ; k < 3 ; k++)<br />
       normal[k] = polygon[n][i][k+3];<br />

What do I replace the bold & underlined with? Would it be sizeof(polygon)/sizeof(polygon[0]) for the outer loop and sizeof(polygon[0])/sizeof(polygon[0][0]) for the inner?

This stuff confuses me.

Thanx for the help,
-Flack
GeneralRe: Need help with multi-dim arrays please Pin
David Crow24-Sep-03 8:20
David Crow24-Sep-03 8:20 
GeneralRe: Need help with multi-dim arrays please Pin
Flack24-Sep-03 8:34
Flack24-Sep-03 8:34 
GeneralRe: Need help with multi-dim arrays please Pin
David Crow24-Sep-03 9:04
David Crow24-Sep-03 9:04 
GeneralRe: Need help with multi-dim arrays please Pin
JWood24-Sep-03 8:39
JWood24-Sep-03 8:39 
GeneralRe: Need help with multi-dim arrays please Pin
John M. Drescher24-Sep-03 15:08
John M. Drescher24-Sep-03 15:08 
QuestionMultiple lines in a static text control? Pin
b_girl24-Sep-03 7:23
b_girl24-Sep-03 7:23 
AnswerRe: Multiple lines in a static text control? Pin
Michael P Butler24-Sep-03 7:39
Michael P Butler24-Sep-03 7:39 
GeneralRe: Multiple lines in a static text control? Pin
b_girl24-Sep-03 7:49
b_girl24-Sep-03 7:49 
GeneralQuickie question re char buffers Pin
NewportKarl24-Sep-03 7:21
NewportKarl24-Sep-03 7:21 
GeneralRe: Quickie question re char buffers Pin
Ravi Bhavnani24-Sep-03 7:55
professionalRavi Bhavnani24-Sep-03 7:55 
GeneralRe: Quickie question re char buffers Pin
Alvaro Mendez24-Sep-03 9:07
Alvaro Mendez24-Sep-03 9:07 
GeneralRe: Quickie question re char buffers Pin
Ravi Bhavnani24-Sep-03 9:14
professionalRavi Bhavnani24-Sep-03 9:14 
GeneralRe: Quickie question re char buffers Pin
Alvaro Mendez24-Sep-03 9:30
Alvaro Mendez24-Sep-03 9:30 
GeneralRe: Quickie question re char buffers Pin
Alvaro Mendez24-Sep-03 9:02
Alvaro Mendez24-Sep-03 9:02 
GeneralRe: Quickie question re char buffers Pin
Karl Fetterhoff25-Sep-03 7:06
Karl Fetterhoff25-Sep-03 7:06 
GeneralSetup API Pin
Laroo24-Sep-03 7:03
Laroo24-Sep-03 7:03 
GeneralGetOpenFileName filter Pin
Jason Henderson24-Sep-03 6:05
Jason Henderson24-Sep-03 6:05 

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.