User profile: JockX
| User info |
| User name: | JockX |
| History |
| Joined: | |
| Number of posts: | 102 |
| Latest posts: |
conio.h in visual studio Before you get a ton of usefull replies, know just this - conio.h is not part of C++ as such, and in...
Array of arrays, tree of data You are trying to fit
[code] double data0[256][2]= {};[/code]
inside
[code] double data1 [2][256];...
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...
|
This user does not accept Private Messages