- 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
Well, basically I like to program. I could do it all day and night, and often do. I'm interested in robotics, but don't really have the revenue to take it to a serious level. Right now one thing I would like to learn is how to program micro controllers.…
- Interests
- Programming (C++), Robotics, Airsoft
- PC Specs
- OS - Windows Vista Home Premium (*sigh* I miss Windows XP =[ )
16 Posted Topics
Re: Show me what you have for code and I'll help you develop it more. Remember that help is only given if you show that you actually want to do some work. ^_^ | |
A fun little program that uses your internal motherboard speaker or "Beep" speaker and your keyboard to make a musical instument very similar to a musical KeyBoard. ![]() | |
This program uses snipets from a couple of other programs that I put together in order to make a program that displays the time and date and refreshes the time and date every second. I commented practically every line to explain, as far as I know, what it does. If … | |
I was just wondering if there was another way to out put text besides cout? I know this probablt sounds weird because cout works perfectly fine and stuff, but I just want to know if all of the input/output has to be done in a cprompt window? Dose anyone know … | |
Re: This is a nice idea, but you should know that you're noy gonig to get any help just by asking, you need to show some effort. So how about you make a program up as best as you can and we can help. Also what COMPILER are you using and … | |
The easiest way that I've seen to make sounds with C++ is with [code]Beep (frequency,duration);[/code] But, I've run into a snag. This command only outputs to the internal speaker which was all good on my old computer, but on my new laptop I either don't have an internal speaker or … | |
Re: If you're using Dev-C++ or a similer compiler on a computer running windows as an OS, and the output somes up in a cprompt window, then you can use: [code] system("cls"); [/code] For some reason people don't like to use this though. Maybe because it's compiler or output window specific … | |
I hear alot of people saying not use: [code] system("pause"); system("cls"); system("title"); [/code] I think you get what I mean, so I'm trying to make functions that will replace all of these, and for my first installment I'm going to show you how to replace system("pause");. Here is what I … | |
I'm trying to write some code that will take each individual part of a 2D array and put it into the same part of a different array. Here's the code, tell me what you think!! ^_^ Thanks in advance for any help!! [CODE] bool repeat = true; int a = … | |
Does anyone know how to use a for loop to clear a 2D array? To clear a 1D array, for example you might do this: [CODE] char array[10]; for (int ct; ct<=10; ct++) { array[ct] = "\0"; } [/CODE] What I'd like to know is how to clear a 2D … | |
I want to how to use a character that isn't on the keyboard in the out put of my program. I've gone into eudcedit.exe to create characters that I want to use in my program and saced them under the font that I use for output, but what I want … | |
I just wanted to start a list of system(" ") funtions. I'll write all of the ones I know and if you know any more please post them. Thanks for contributing!!! ^_^ system("pause"); - This displays "Press any key to continue..." and waits for a key to be hit to … | |
Re: If your question wasn't already answered by Ancient Dragon, and you're using text, then try using system("cls"); this should work to clear the screen. | |
Re: Do you know cout or other out put? If so you could do a text based RPG or a quiz game. | |
Does anyone have a list or know how I can get a list of the bit addresses of keys used in the getch (); fuction. For example: F1 is 59 F2 is 60 F3 is 61 F4 is 62 F5 is 63 etc. I'm pretty sure that this is the … | |
I was just wondering if anyone knew how to run two linked output windows at the same time or if it is even possible. I'd appreciate any and all help. Thanks!!! ^_^ |
The End.