0_0_39772038_5085.cpp: In function 'int main()':
0_0_39772038_5085.cpp:111:5: error: 'initializeList' was not declared in this scope; did you mean 'intializeList'?
111 | initializeList(&list,1);
| ^~~~~~~~~~~~~~
| intializeList
0_0_39772038_5085.cpp:112:15: error: expected ';' before ')' token
112 | for(cin>>n){
| ^
| ;
0_0_39772038_5085.cpp:118:5: error: expected primary-expression before 'for'
118 | for(int i=0;i<list.size;i++){
| ^~~
0_0_39772038_5085.cpp:117:18: error: expected ')' before 'for'
117 | int prod = 1;
| ^
| )
118 | for(int i=0;i<list.size;i++){
| ~~~
0_0_39772038_5085.cpp:112:8: note: to match this '('
112 | for(cin>>n){
| ^
0_0_39772038_5085.cpp:124:13: error: 'prod' was not declared in this scope
124 | cout << prod << endl;
| ^~~~
|