No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
![]() | Re: 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 … |
Re: 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 … | |
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. … | |
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 … | |
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 … |
The End.