Changes to struct passed as pointer not being reflected outside of function scope C

后端 未结 0 1077
北海茫月
北海茫月 2021-01-05 04:38

I have a struct.

typedef struct Array
{
  int capacity;   
  int count;            
  char **elements;       
} Array;

I made a function to c

相关标签:
回答
  • 消灭零回复
提交回复
热议问题