Mail Archives: djgpp/2000/01/28/02:24:33
Hello,
When I tried to pass '...' (3 dots) to my program compiled in djgpp, something
like:
C:\>myprog ...
Djgpp returns just a single dot in argv[]! When I tried passing 4 dots or 2
dots, it is working fine...I don't know if this is a bug in my program or if
has something to do with my operating system (Windows 98), but I will really
appreciate if someone wil going to help me with this...Maybe this might be a
bug in djgpp?...
my code:
------------------------
int main(int argc, char **argv) {
printf("%s", argv[1]);
return 0;
};
------------------------
Thanks,
Lars
- Raw text -