The output should also give a file which doesnt consits alphanumeric. I tried this
while( ( ch = fgetc(fp) ) != EOF ){
if(isalpha(ch)| |ch==' ')
Is this correct.than how to complete it.
Suggest any other method pls
while( ( ch = fgetc(fp) ) != EOF ){
if(isalpha(ch)| |ch==' ')
Is this correct.than how to complete it.
Suggest any other method pls
Comment