#include
using namespace std;
Struct says {
Char word [20];
Int times;
};
Void calls (says *);
Int main ()
{
}
I am a beginner, but also their self-study, especially want to ask here struct says {char word [20]; Int times; } is what meaning,,,,
CodePudding user response:
Struct says {char word [20]; Int times; }structure data type
When can use
Says the word [0]='a';
Says The Times=1;
So using similar
CodePudding user response:
Thank you ~ I see ~ roughly