Forum: C++ Aug 5th, 2005 |
| Replies: 11 Views: 30,772 Completely OFF-topic and I really don't care if you delete this or lock it: I think that Narue should stop being so insolent and thinking she is superior to others. And I also think that she should... |
Forum: C Jul 31st, 2005 |
| Replies: 6 Views: 1,521 Since WHEN is void main() wrong exactly??
A few thing to say:
1. a program is better than saying-search google
2. it was written in Borland C++ 3.1
3. Oh, I'm sorry, I should have made it work... |
Forum: C Jul 31st, 2005 |
| Replies: 6 Views: 1,521 Ok, this is not the biggest dificulty in the world:
#include <stdio.h>
#include <conio.h>
#include <dir.h>
void main(int argc, char **argv)
{
FILE *in;
if (searchpath(argv[1])) |
Forum: Windows NT / 2000 / XP Jul 29th, 2005 |
| Replies: 6 Views: 2,992 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.... |
Forum: C++ Jul 29th, 2005 |
| Replies: 4 Views: 1,326 Just write "myArray[i]%2" in the "if", because you are only checking to see if the iterator is odd or not. |
Forum: C++ Jul 29th, 2005 |
| Replies: 2 Views: 1,621 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... |