Hey!
I am trying to write a c program that converts multiple files of one kind to similar files of anther kind. Do anyone have suggestions of how I can do this in a easy way and avoid writing
for each file when each file will have names like out001, out002 etc. and the corresponding in files will be in001, in002 etc.Since it is quite a lot of files.
I am trying to write a c program that converts multiple files of one kind to similar files of anther kind. Do anyone have suggestions of how I can do this in a easy way and avoid writing
Code:
..FILE *out;..
Comment