1 2 3 4 5 6 7 8 9 | #include "stdio.h" main() { FILE *ptr; char i; ptr=fopen("zzz.c","r"); while((i=fgetch(ptr))!=EOF) printf("%c",i); } |
1 2 3 4 5 6 7 8 9 | #include "stdio.h" main() { FILE *ptr; char i; ptr=fopen("zzz.c","r"); while((i=fgetch(ptr))!=EOF) printf("%c",i); } |
Be the first to receive the latest updates from Codesdoc by signing up to our email subscription.