Error[Pe165]: too few arguments in function call C:\Users\DELL\Desktop\Smart_Community\Project\main.c 374
时间: 2023-10-05 21:09:50 浏览: 237
javascript下arguments,caller,callee,call,apply示例及理解
Error[Pe165]: too few arguments in function call 是指在C:\Users\DELL\Desktop\Smart_Community\Project\main.c文件的第374行中,函数调用中提供的参数数量太少。这个错误通常意味着在函数调用中缺少了一个或多个必需的参数。
为了解决这个问题,您需要检查函数声明和函数调用之间的参数数量是否匹配。确保您在函数调用中提供了正确数量和类型的参数。
阅读全文