{
int c;
FILE *output;
int i;
output=fopen("2", "r");
clrscr();
while(fscanf(output, "%x ", &c)!=EOF)
{
printf("%c", c);
}
fclose(output);
getch();
}
#include<stdio.h><br>#include<conio.h><br>#include<string.h> </string.h></conio.h></stdio.h>
void main (void)
{
FILE *output;
int i;
char str[100];
output=fopen("1", "w");
clrscr();
strcpy(str,"Codes should not be here"); for(i=0; i<strlen(str); i++)></strlen(str);> {
fprintf(output, "%x ", str);
}
fclose(output);
}
:D