- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
4 Posted Topics
[QUOTE=Ancient Dragon;662958][code] #include <iostream> #include <iomanip> #include <ctime> #include <windows.h> using namespace std; int main() { DWORD ticks = GetTickCount() / 1000; cout << ticks << "\n"; time_t now = time(0); struct tm* tm = localtime(&now); tm->tm_sec -= ticks; now = mktime(tm); cout << setw(2) << setfill('0') << tm->tm_mon << …
Hello, Would you please give a hint to define a template class specialization in a template class which is in a namespace I have tried following code with gcc 4.1 and get an error message but Visual studio has no problem with it. [code] namespace A { template <typename T> …
Hello, Would anybody suggest any STL algorithm that works on two ranges applying a predicate. For example I would like to have the difference of two maps values. Thanks in advance
Hello, Can anybody explain why I got an awful error message when try following code: [code=cplusplus] #include <vector> int main() { std::vector<const int> v; return 0; } [/code] Thanks in advance, brain.
The End.
brain