User profile: JockX

User info
User name:JockX
History
Joined:
Number of posts:100
Latest posts:

Difference between Arrays and Enumerated Constants
Think of enumerated type like of some other form of counting instrument. Eg. integers allow you to r...

Array of arrays, tree of data
Well, not really, as your example would print data1's address, not contents, but close. You should r...

Array of arrays, tree of data
Why not use some kind of struct: [code]struct Dipole{ int amplitude; int frequency; }; Dipo...

Unkown Syntax error.
One thing to note - you are passing the same (not copy of) array [code]temp[][/code] each time the l...

Unkown Syntax error.
[code]bool temp[8]; for(int k=0;k<7;k++) { temp[k]=false; }[/code] You are leaving value of [cod...

This user does not accept Private Messages

User: JockX

  • Public profile