Am using gcc441 (also tested in 433)(both Paul Smedly's) but when I use
FILE *fd;
if((fd = fopen("mydll1.dfl", "r"))== NULL);
{
printf("Cannot open %s .\n", path);
return NULL ;
}
I always a null returned.
If I use w or w+ it creates/overwrites the file but still returns a null
pointer.
Even if I use just fd = fopen.......
I still end with a null pointer
Can someone help please