c - Unallocated data type in allocated struct -


say have struct definition :

typedef struct sample {     int s; }sample; 

and declare pointer variable below

sample *sample = (sample *)malloc(sizeof(sample)); 

now question is, 'int s' placed, in stack or heap? mean there dynamic memory allocation 'int s' also?

when allocate space struct via malloc, entire struct (i.e. fields contained within struct) live on heap.


Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

javascript - Get parameter of GET request -

javascript - Twitter Bootstrap - how to add some more margin between tooltip popup and element -