File handling in C October 19, 2021 #include <stdio.h>int main(){ FILE *p,*m; p = fopen("myfile.txt", "r"); m= fopen("text.txt","w"); char str[40];printf(p,10,str); fclose(p); fclose(m); return 0;} Share Get link Facebook X Pinterest Email Other Apps Share Get link Facebook X Pinterest Email Other Apps Comments
Comments
Post a Comment