Hi everyone, i wanted my program to create another small program, but it stopped at "\x00"
, why and what can i do. Thnaks
#include <stdio.h>
int main()
{
FILE *out;
out = fopen("c:\\cpy.exe", "wb");
fprintf(out, "\xCD\x21\x00\xCD\x21");
fclose(out);
return 0;
}