- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
14 Posted Topics
Re: And if you want a console that stays open afterward like IDLE does, for browsing objects and output, use [CODE]C:\PythonXX\python.exe -i "$(FULL_CURRENT_PATH)"[/CODE] I'd sage this post but I don't see an option.. | |
I was following [this tutorial](http://www.swiftless.com/tutorials/opengl4/1-opengl-window.html) for my first attempt at OpenGL. All I'm doing is initializing an empty window. His VS 2010 code is [here](http://www.swiftless.com/?download=1%20-%20OpenGL3%20-%20Window). Using Dev-C++ as my IDE on Windows 7, and MS SDK 7.1, I get this error: [Linker error] undefined reference to `_imp____wglewCreateContextAttribsARB' ld returned 1 … | |
I got a laptop with vista and connected to the wireless router here with no problems. Everything went along smoothly for a couple days then it decided to quit working. My wireless connection is still perfect, I can ping and browse anything by IP only. It stopped resolving domain names … | |
For some reason, newline characters seem to be using 2 bytes in text files instead of one. Is this normal? When I open a text file and look at the size, I get one more for every character I add, except for newlines, which add 2 bytes. | |
I'm making a program that compresses text files using the LZW compression algorithm and creates a seperate compressed file. I made a file type and extension and icon for this file type (.nct), and set up 2 actions for it - one that calls the program and passes the .nct … | |
How would you change the same member of many objects of the same class (or structure if possible)? [CODE]struct point { float x, y, z; } point a, b, c; a.x += 20; // b.x += 20; // now how would i do this in one statement? c.x += 20; … | |
How would you make the program pause for a certain amount of time? I can't just tell it to do some trivial task over and over for so many loops, because the compiler seems to know its trivial and cuts it out. There's gotta be a simpler way anyway. | |
Okay, Iv'e finished learning C++. What can I do with it? Specifically, I want to do some graphics stuff, anything beyond iostream and fstream. What comes after C++? I know it does more than this. If I could just have a function to set a pixel, I could make my … | |
Re: Use arrays rather than pointers when you can, they're simpler. And watch that accidentally putting stuff at the end of a comment when you wanted in the code. You did that a few times, it was confusing. And use \n (newline character, yes it's one character, so '\n' is valid) … | |
Hi, i'm new to C++ (well actually i just haven't looked at it in awhile) and I've been trying to figure out how to make my array's content depend on a condition. It's not extremely important, but I think there's got to be an easier way than what I'm using. … | |
I am extremely new to C++, can sum1 tell me a faster way to output stuff than cout? It either outputs too slow or takes too long to automatically scroll or something. I was trying to sort of output and refresh in real time w cout | |
Re: I would think specific things like that are easy enough to find online. Yahoo and dogpile and search engines like that are better at finding researchy/technical stuff than Google I think, just search. I am new, forgot the exact syntax of heap commands (I know it involves new and delete), … | |
| |
Re: This is useless i know, but im using a free compiler i got with C++ for Dummies (which REALLY sucks) and it doesn't have tab characters for specifically that reason i think. Tabbing in it is confusing, i dont get the rules yrt but sometimes it does 4 spaces, 8 … |
The End.