is their any thing I should consider while I am writing my program to get the write content of mp3 file and write to anenter code hereother file ? because am getting Error!
this is my code in c
FILE *fout;
fout = fopen("step.MP3","rb");
while (!feof(fout))
{
fread(data,counter + 1,1,fout);
}
fclose(fout);
FILE *fo;
fo = fopen("step.MP3", "wb");
fwrite(test,1,fileSize,fo);
fclose(fo);