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
~976 People Reached
Favorite Forums

6 Posted Topics

Member Avatar for hq1

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 …

Member Avatar for hq1
0
289
Member Avatar for indrajeet6

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"

Member Avatar for Perry31
0
237
Member Avatar for zacory

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 = …

Member Avatar for zacory
0
153
Member Avatar for zacory

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 …

Member Avatar for tetron
0
101
Member Avatar for zacory

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 …

Member Avatar for Salem
0
91
Member Avatar for zacory

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 …

Member Avatar for zacory
0
105

The End.