332 8 C:\Users\lj\Desktop\课上\emp.c [Error] conflicting types for 'getEmpYpaid'
时间: 2023-09-24 21:02:12 浏览: 73
网页基础:第次课JavaScript对象优秀PPT.ppt
This error message means that there are two or more functions or variables with the same name but different data types. In this case, the function "getEmpYpaid" has been declared with one data type but later defined with a different data type.
To fix this error, make sure that the function declaration and definition have the same data type. Check for any other functions or variables with the same name and ensure that they have different names or are declared and defined with the same data type.
阅读全文