#include <stdio.h> int main(void) { FILE *ifp, *ofp; ifp = fopen(“file1.txt”, “r”); ofp = fopen(“file2.txt”, “w”); …