type | location |
---|---|
globals/static |
type | location |
---|---|
globals/static | code/data |
type | location |
---|---|
globals/static | code/data |
local/function |
type | |
---|---|
globals/static | code/data |
local/function | stack |
type | |
---|---|
globals/static | code/data |
local/function | stack |
dynamic |
type | location |
---|---|
globals/static | code/data |
local/function | stack |
dynamic | heap |
consider the following code:
int foo( int count, double d)
{
}
consider the following code:
int foo( int count, double d)
{
int total = 0 ;
for (unsigned int i = 0 ; i < count ; ++ i)
++total ;
return total ;
}
consider the following code:
int foo( int count, double d)
{
int total = 0 ;
for (unsigned int i = 0 ; i < count ; ++ i)
++total ;
return total ;
}
int main()
{
foo() ;
return 0 ;
}
what happens when
what happens when
what happens when
what happens when
what happens when
what happens when
now consider another function
void bar( char c[] )
{
int x ;
char* pc = c ;
}
int foo( int count, double d)
{
int total = 0 ;
for (unsigned int i = 0 ; i < count ; ++ i)
++total ;
return total ;
}
void bar( char c[] )
{
int x ;
char* pc = c ;
}
int foo( int count, double d)
{
int total = 0 ;
for (unsigned int i = 0 ; i < count ; ++ i)
++total ;
char* pc = "hello!" ;
bar(pc) ;
return total ;
}
what happens when
what happens when
what happens when