Tagged Questions
3
votes
5answers
2k views
Is runtime stack kept in data segment of memory?
I'm very curious of the stack memory organization after I experiment what's going on in the background and obviously saw it's matching with tiny knowledge I acquired from books. Just wanted to check ...
1
vote
4answers
163 views
Variable allocation in segments
As a check I tried the following code:
const int i = 100;
static int m = 90;
const int p = 40;
int x;
main()
{
const int j = 40;
static int k = 40;
const int n;
char *p = "Rama";
}
...