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
~513 People Reached
Favorite Forums
Favorite Tags
c x 8
Member Avatar for tots08

Hey guys, Just needing your help on this code. [code=c] #include <stdio.h> int main() { FILE *fin,*fout; char c; fin=fopen("input.img","rb"); fout=fopen("output.img","wb"); while ((c=fgetc(fin))!= EOF) { fputc(c, fout); } return 0; fclose(fin); fclose(fout); } [/code] I'm trying to unscramble a scrambled image and this just outputs nothing. Would you guys be …

Member Avatar for tots08
0
249
Member Avatar for tots08

Hi guys and girls! You can call me tots. I'm new here from nz. I am majoring in information technology. I've actually just started a few months ago, so everything about C programming is still quite confusing for me. Or maybe, just with arrays since that's our topic now. I …

Member Avatar for maceman
0
116
Member Avatar for tots08

Hi! Can any c programmers there help me with this assignment please? I really do not get my lecturer. Conway's [I]life[/I] is a special kind of game. It isn't really a game - just a spectator sport. It is played on a chess board, where each cell is either alive …

Member Avatar for tots08
0
148