14.11.2012, 10:20
This isn't important, but if you know about it, enlighten us.
If you try:
It will always return a 7-digit value starting with 5093.
On the other hand, if you try this:
You will get: 51996***
The same thing is for all file modes..
Why?
If you try:
Код:
new File:f; f=fopen("ss.txt",io_read); printf("%d",f);//you will get a warning here..
On the other hand, if you try this:
Код:
printf("%d",fopen("ss.txt",io_read));
The same thing is for all file modes..
Why?