No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
8 Posted Topics
Maybe there's a macro defined with a name of "sqrt" ? There are macros in the Windows.h header such as "min" and "max" which conflict with std::numeric_limits<anything>::min()/max(); In which case for the Windows.h header you will want to define: NOMINMAX to remove the macro.
Please check to make sure std::numeric_limits<unsigned long long>::max() > 600851475143
Make [code]void main()[/code] this: [code]int main()[/code]
Maybe he should use a std::stringstream to convert a string to an integer/float. After all that's on Bjarne Stroustrup's website. There are also infinite ways to do what you're asking, I would suggest playing with std::ifstream and std::ofstream. I don't usually like to suggest an approach, but I think formatting …
Hi, I'm trying to use an input device like a joystick as a mouse, and I've got some good behavior for desktop use by polling the state of the device in a loop and doing some work with the values, then using SendInput with some INPUT structures to make the …
Line 27.. the ; at the end of your if remove that, and it may work
I have a fairly good understanding of C++'s C side and little bit about classes, so.. I'm wondering, is there an easy way to learn WIN32 application programming? I mean using [code] int APIENTRY WinMain() [/code] window procedures, creating buttons, etc.. Is there a way to avoid things like "String^" …
[url]http://www.ietf.org/id/draft-ietf-httpbis-p2-semantics-08.txt[/url] It may use GET or POST or something, I haven't had much luck doing this either. It's fairly simple to automate sending email and such using winsock2 and C++.
The End.
taylorc8