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
~75 People Reached
Favorite Forums
Favorite Tags
c x 2
Member Avatar for onew1ng3d

If I had a structure like this [CODE]typedef struct { char word[101]; int freq; char filename[100]; } WordArray;[/CODE] and declared this inside a method instead of it being a global variable(so its local) [CODE] WordArray words[10000];[/CODE] then how would I allocate memory to this? I've had this [CODE] for (i=0;i<10000;i++) …

Member Avatar for histrungalot
0
75