No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
6 Posted Topics
What exactly are you having issues with? Are you getting unexpected output, or does it not even compile? Just things I noticed while reading, though: Lines 70-95, those if statements are using the assignment operator ("=") instead of the logical equal to ("=="). Also, it looks like you are doing …
I believe in windows the EOF is a two character combination, so the read loop will never end because "ch" cannot be evaluated to EOF [URL="http://en.wikipedia.org/wiki/C_file_input/output"]This wiki article[/URL] suggests passing the "fgetc(fw)" to an integer, comparing that to EOF, then converting it to a character to be stored in "ch"
Hello, In s project I'm about to start I'm going to need the ability to search for files, so I figured I would use the _findfirst() function. I've used it in previous projects with no problems, but when I tested the function like so: [CODE] _finddata_t information; long reference = …
I'm creating a program that maintains a log file. The file is created at the start up of the program and appended to throughout the run. This works perfectly fine, but I went and manually added the program to run at start up in the registry. The program runs as …
After a heated arguement with a friend over what he calls "bloat-ware" I tried to find how much of my file size is unneeded dribble. I found out that tasm produces the smallest files for simple programs and then I looked into more detail as to that. It appears that …
I'm trying to make a simple IM program. I created a server and client that connects specifically to my computer using Winsock2.h I tested it and it works from my computer to my server, from my roommates computer to my server, the library computer to my server, but I had …
The End.
zacory