for (ctr = 0; ctr <= numMov; ctr++)
{
printf("請輸入電影的名字\n\n");
scanf_s("%c", namMov);
printf("請對該電影進行評分!\n\n");
scanf("%d", &rating);
if (rating>fisRating)
{
strcpy_s(favorite, namMov); -- 程序在此指出錯誤:函數調用中的參數太少
fisRating = rating;
請問應該怎麼解決???
C語言的strcpy_s是三個參數的,
errno_t strcpy_s(
char *strDestination,
size_t numberOfElements,
const char *strSource
);第二個參數表示目標字符串的大小。兩個參數的strcpy_s只有C++的編譯器支持,
errno_t strcpy_s(char (&strDestination)[size], const char *strSource)
你的明顯是C語言的程序,要用三個參數的