非常に基本的な質問があり、助けが必要です。動的に割り当てられたメモリ (ヒープ上) の範囲を理解しようとしています。
#include <stdio.h>
#include <malloc.h>
//-----Struct def-------
struct node {
int x;
int y;
};
//------GLOBAL DATA------
//-----FUNC DEFINITION----
void funct(){
t->x = 5; //**can I access 't' allocated on heap in main over here ?**
t->y = 6; //**can I access 't' allocated on heap in main over here ?**
printf ("int x = %d\n", t->x);
printf ("int y = %d\n", t->y);
return;
}
//-----MAIN FUNCTION------
int main(void){
struct node * t = NULL;// and what difference will it make if I define
//it outside main() instead- as a global pointer variable
t = (struct node *) malloc (sizeof(struct node));
t->x = 7;
t->y = 12;
printf ("int x = %d\n", t->x);
printf ("int y = %d\n", t->y);
funct(); // FUNCTION CALLED**
return 0;
}
ここで、引数(へのポインタ)を渡さずにメモリが割り当てられていても、構造体にアクセスできますか?t
ヒープはスレッドに共通なので? グローバル変数として外部で定義すると、どのような違いがあり、何か問題がありますか?funct()
main()
t
function funct
struct node * t = NULL
main()