char a [N]; clrscr (); printf("Enter a string:"); gets (a); printf ("The original string is :"); puts (a); chg (a); printf("The string after modified :"); puts (a); readwriteDAT ();
void readwriteDAT ()
int i; char a [N]; FILE *rf, *wf; r f=fopen ("in36. dat", "r" ); wf=fopen ("out36. dat", "w" ); for (i=0;i<10; i++)