Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
この行の複数のマーカー-「タイプ」の以前の定義はここにありました-パラメータ「タイプ」の再定義
int parseLine(char* line, int* day, float* amount,char* type, char* type);
これは、EclipseのヘッダーCファイルで発生するエラーです。
エラーは、char* type2回定義したことを示しています
char* type
変数名typeを2回使用しています。
type
行を別の名前に置き換えます
int parseLine(char* line, int* day, float* amount,char* type, char* type2);