Mã chấm Tài khoản Bài tập Ngôn ngữ lập trình Trạng thái Thời gian Bộ nhớ Kích thước Thời gian nộp
13711 Nguyễn Văn Cảnh Số nguyên không âm đẹp C/C++ Lỗi biên dịch (CE) 0 MS 0 KB 583 2022-12-29 19:55:36

Lỗi biên dịch:

Main.c:8:11: error: unknown type name ‘Test’
 void nhap(Test T[], int &n)
           ^~~~
Main.c:8:25: error: expected ‘;’, ‘,’ or ‘)’ before ‘&’ token
 void nhap(Test T[], int &n)
                         ^
Main.c:19:10: error: unknown type name ‘Test’
 void dem(Test T[], int n)
          ^~~~
Main.c: In function ‘main’:
Main.c:36:2: error: unknown type name ‘Test’; use ‘struct’ keyword to refer to the type
  Test T[100];
  ^~~~
  struct 
Main.c:40:2: warning: implicit declaration of function ‘nhap’ [-Wimplicit-function-declaration]
  nhap(T, n);
  ^~~~
Main.c:41:2: warning: implicit declaration of function ‘dem’ [-Wimplicit-function-declaration]
  dem(T,n);
  ^~~
Main.c:39:2: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d", &n);
  ^~~~~~~~~~~~~~~