#include <stdio.h>
#define TEXT "hello"
static char* ptr1=(char*) 0x400040;
static char* ptr2=(char*) 0x400040+sizeof(TEXT)+1;
void main()
{
printf("%s",ptr1);
printf("%s",ptr2);
}
the string "hello" is put in the bins of the exe i got, normally it wouldnt happen!!
how to bypass that?