Home > Back-end >  Structure conflict with string, do how?
Structure conflict with string, do how?

Time:10-23



Small white string cannot be defined, from the definition will show the memory conflict,

CodePudding user response:

An array of
Struct student arr [1].//array length is 1
Arr [1]={} XXX;//an array subscript starting from 0, so change to arr [0]={} XXX;

CodePudding user response:

Understand, the array subscript=array length limit
  • Related