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
Ranked #31.8K
Ranked #4K
~2K People Reached
Favorite Tags

5 Posted Topics

Member Avatar for computerages

Actually, I have the same type of connection. This occurs when I have exceeded my bandwith--that is downloaded too much. If you have a cheaper subscription for your ISP, you must check your limit. When exceeding it, the speed drastically drops and you get hyper-taxed for every megabyte. Use with …

Member Avatar for Ox00
0
203
Member Avatar for djbsabkcb

[QUOTE=Narue]You have too many posts to be completely ignorant about code tags. Next time I won't bother adding them for you, and you can live with nobody helping because your code is unreadable. Or I might just delete the thread.[/QUOTE] Completely OFF-topic and I really don't care if you delete …

Member Avatar for Narue
0
804
Member Avatar for kartik911

Ok, this is not the biggest dificulty in the world: [CODE] #include <stdio.h> #include <conio.h> #include <dir.h> void main(int argc, char **argv) { FILE *in; if (searchpath(argv[1])) { printf("File exists"); in=fopen(argv[1],"r"); ... } else { printf("File does not exist\nCreate?y/n") ; char c=getch(); if (c=='n'||c=='N') return; else { in=fopen(argv[1],"r"); ... } …

Member Avatar for Narue
0
275
Member Avatar for rks01

In the "for", you stated the following: e=1; e>=9; e++ So, it means that e is first 1 and it will grow each cycle while e>=9 (simply isn't possible-e=1). To correct this, just make the for like this: for (e=1;e<=9;e++) ...

Member Avatar for rks01
0
154
Member Avatar for mav1

Just write "myArray[i]%2" in the "if", because you are only checking to see if the iterator is odd or not.

Member Avatar for The Senate
0
226

The End.