Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
~2K People Reached
Favorite Forums
Favorite Tags

4 Posted Topics

Member Avatar for Flawless

[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 << …

Member Avatar for brain
0
2K
Member Avatar for brain

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> …

Member Avatar for vijayan121
0
137
Member Avatar for brain

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

Member Avatar for brain
0
102
Member Avatar for brain

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.

Member Avatar for brain
0
296

The End.