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.

~2K People Reached
Favorite Forums
Favorite Tags

5 Posted Topics

Member Avatar for begueradj

I'm pretty sure you can rename it to makefile and just type make. I don't think that will affect anything in the makefile unless there's some special case in the file. *edit: make sure you're in the correct directory on the command line when you type make or it obviously …

Member Avatar for biswajit.jgec
0
743
Member Avatar for FinaL111

I'm not sure if this is correct, so take this more as a suggestion from another novice than an actual answer. If you're going to be taking the word list from arguments from the command line you can declare a an array of char* words[argc-1]; Since the first argument is …

Member Avatar for NerdyChick27
0
324
Member Avatar for NerdyChick27

I have an assignment with a slightly strange implementation of priority queues using a binary tree. I'm really having trouble trying to understand how to make my insert function work when the parameters are as follows [CODE]void insert(tree t, void* item)[/CODE] where item is the data going to be inserted. …

Member Avatar for NerdyChick27
0
211
Member Avatar for NerdyChick27

I'm working on an assignment and now that I've finished I'm supossed to write a tester file to demonstrate how well the program works. While writing it I was just testing in a main file within the library itself. Now I'm getting an invalid pointer error when I try to …

Member Avatar for NerdyChick27
0
262
Member Avatar for NerdyChick27

I'm writing a simple cryptography program that uses ISAAC, and I've run into a wall. I am planning on XORing each of my input bytes with 1 random byte each that gets returned from the ISAAC PRNG. This is basically what I'm trying to do [CODE]while(input character != EOF){ read …

Member Avatar for Narue
0
379

The End.