Problem helloworld
User Elnathan
Submission Time 2023-12-18 13:12:08
Score 0
Max Time N/A
Max Memory N/A

Compile Error

helloworld.cpp: In function ‘int main()’:
helloworld.cpp:2:8: error: ‘vector’ was not declared in this scope
2 | main(){vector<long long>v(1000000);}
| ^~~~~~
helloworld.cpp:2:8: note: suggested alternatives:
In file included from /usr/include/c++/9/vector:67,
from helloworld.cpp:1:
/usr/include/c++/9/bits/stl_vector.h:386:11: note: ‘std::vector’
386 | class vector : protected _Vector_base<_Tp, _Alloc>
| ^~~~~~
In file included from helloworld.cpp:1:
/usr/include/c++/9/vector:90:13: note: ‘std::pmr::vector’
90 | using vector = std::vector<_Tp, polymorphic_allocator<_Tp>>;
| ^~~~~~
helloworld.cpp:2:15: error: expected primary-expression before ‘long’
2 | main(){vector<long long>v(1000000);}
| ^~~~