Possible Duplicate:
C String literals: Where do they go?
as far as i know,
generally, pointer have to allocated by malloc(), and will allocated to heap, then unallocated by free();
and
non pointer(int,char,float,etc..) will allocated automatically to stack, and unallocated as long as the function go to return
but, from following code :
#include <stdio.h>
int main()
{
char *a;
a = "tesaja";
return 0;
}
where will a allocated to ? stack or heap ?