Difference between Arrays and Enumerated ConstantsThink of enumerated type like of some other form of counting instrument. Eg. integers allow you to r...
Array of arrays, tree of dataWell, not really, as your example would print data1's address, not contents, but close. You should r...
Array of arrays, tree of dataWhy 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