Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~3K People Reached
Favorite Forums
Favorite Tags
c++ x 5
Member Avatar for nx86

I am trying to understand one C++ program, which has a loop written as follows: [CODE] for(int i = 0; i < (1<<m); ++i) { for(int k = 0; k < m; ++k) { if(i&(1<<k)) { //in subset } } } [/CODE] I do not understand how the loop control …

Member Avatar for WaltP
0
112
Member Avatar for nx86

In Excel, the columns are identified by a b c .... z aa ab ac .... az ba bb bc .... yz za zb zc .... zz aaa aab aac .... These identifications correspond to the numerical values as 1 2 3 .... 26 27 28 29 .... 52 53 …

Member Avatar for jonsca
0
110
Member Avatar for tarheelfan_08

Ok guys, for my next assignment I have to read from a binary file and then print out my information. I will post the assignment and what I have so far. But my question is, do I create the binary file first in the program or by hand or what?? …

Member Avatar for tarheelfan_08
0
3K