ENG
RUS
Timus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board
Discussion of Problem
1220
. Stacks
Why Compilation error on C++
Posted by
The Punisher
19 Feb 2006 16:11
#include<vector.h>
int main()
{
vector <int> a[100];
return 0;
}
Where is the vector.h ???
Thanks
Re: Why Compilation error on C++
Posted by
Vladimir Yakovlev (USU)
19 Feb 2006 16:54
Try this:
#include <vector>
using namespace std;
© 2000–2024
Timus Online Judge Team
. All rights reserved.