total descendants:: total children::1 |
{ FILE *fp; fp = fopen("hidden.file","w"); unlink("hidden.file"); /* deletes filename inode */ /* hidden.file no longer has a filename and is truely hidden */ fprintf(fp,"This data won't be foundn"); /* access the data part */ /*etc*/ fclose(fp); /* finally release the data part */ } |
| |||||||||||||||||||||||