char *token = "some random string";
When I declare this, I know "some random string" is stored in read-only memory. My question is where will read-only memory be? Will it be in the data section or in bss?
char *token = "some random string";
When I declare this, I know "some random string" is stored in read-only memory. My question is where will read-only memory be? Will it be in the data section or in bss?