-
Replied To a Post in final assignment, please please please help!!!
There are plenty of things about VS that have caused me headhaches before, to be sure, but most of them weren't bugs per se. What problemas are you having? If … -
Began Watching car rental
A need a program that will ask the persons age , type of car needed and the number of days the car is needed. if the driver is <= 25 … -
Replied To a Post in car rental
OK, and what do you have for it so far? Did you have any questions about it specifically? -
Began Watching Colored text
Hi again, so guys I want to add some color to my text but all the explanations I find are some links to complicated ways of doing it with almost … -
Replied To a Post in Colored text
[This](http://msdn.microsoft.com/en-us/library/windows/desktop/ms682088%28v=vs.85%29.aspx) doc page may prove useful to you. > By the way does it have to say void in the brackets on int main. No. In fact, in C++ it … -
Began Watching Dev C++
Hello to all! I am using compiler Dev C++ but i am facing a problem in with it. Sometimes it happens that if i try to run one program , … -
Replied To a Post in Dev C++
> I'm not sure why the compiler would work like that unless you have a really outdated/beta version. This is a distinct possibility, actually. The original Bloodshed Dev-C++ hasn't been … -
Replied To a Post in map creation using link list in c
OK, assuming the key can have any arrangement of alphanumeric values, 20 x 36! is a huge range, but that doesn't rule out anything except a simple lookup table. What … -
Began Watching map creation using link list in c
Hi Guys, Any body knows what is the efficient way to create the map (key,value pair ) using linklist using c .Apart from this in this map one key can … -
Replied To a Post in map creation using link list in c
Does it have to be a linked list? There are several options, really, but we'd need to know what you're goal is and what the constraints on the design are. … -
Began Watching Procedure of learning C++
I have to do my project using C++, should I firstly read a book about that and after that write the programming, or it's better to start wtiring my code … -
Replied To a Post in Procedure of learning C++
Some further questions: * What operating system and toolchain are you writing this for (e.g., Windows and Visual Studio, Linux and GCC, MacOS and xCode. etc.)? * Is this coursework … -
Began Watching What are interfaces used for?
What are interfaces main purposes and what features do they offer to give us a solid reason to use them? -
Replied To a Post in What are interfaces used for?
A little history here: the original impetus for interfaces, when they were introduced in Java (circa 1992, when it was still code-named Oak) was as an end-run around multiple inheritance. … -
Replied To a Post in What's the problem with my code?
Ah, I see what's happening, now, but only due to the serendipitous fact that my code *doesn't* clear the screen. Because I can see the results, I can see that … -
Replied To a Post in final assignment, please please please help!!!
You are correct about `++` being the increment operator; it is commonly used in C code, but yes, it most often shows up in a `for()` loop. The `ary[size] = … -
Began Watching What's the problem with my code?
- When i'm trying to delete the first number of list, something went wrong when i print the list? - Can anyone help me? Thanks so much T_T. - Here … -
Replied To a Post in What's the problem with my code?
A few things to note before proceeding: * In modern C++, the headers for the standard library eliminate the `'.h'` extension, and the legacy C headers all begin with the … -
Replied To a Post in final assignment, please please please help!!!
BTW, what textbook are you using? It might help us understand why you are having so much trouble with it, and if it is as bad as you say, we'll … -
Began Watching Java aint good for real time applications?
I remember reading in Java's EULA that you acknoledge not to use it for certain things (real time applications). I did a bit of research on this matter and came … -
Replied To a Post in Java aint good for real time applications?
First off, you aren't going to be writing hard [real-time](https://en.wikipedia.org/wiki/Real-time_computing) applications on Windows, or on any other operating system that uses virtual memory without specific support for unswappable pages. That's … -
Began Watching final assignment, please please please help!!!
I have an assignment that requires me to make a code to basically have the user input 5 letters into an array. The five letters then have to be checked … -
Replied To a Post in final assignment, please please please help!!!
That code will in fact work, but it isn't typical C idiom, and isn't quite what you seem to have in mind. Basically, what you are doing with this is … -
Replied To a Post in Help!! How to change text and background color.
I was, with considerable effort, able to get the `blue()` routine working in my own second stage, but the way I write code is significantly different from your style and … -
Replied To a Post in Including C++ files
Just to clarify to point: you have an existing source file, which contains a complete program (e.g., it has a `main()` function and can be compiled and run without any … -
Replied To a Post in Including C++ files
Apple's documentation on [Workspaces](https://developer.apple.com/library/ios/featuredarticles/XcodeConcepts/Concept-Workspace.html) and [Projects](https://developer.apple.com/library/ios/featuredarticles/XcodeConcepts/Concept-Projects.html) should answer most of your questions; while it is aimed mainly at Objective-C, it should be the same for all supported languages. It seems … -
Replied To a Post in Including C++ files
It was no waste of time, I assure you; this is what we are here for, after all. -
Replied To a Post in Help!! How to change text and background color.
I should have specified that `gotoxy` and `set_mode` should be in the functions.asm file; I am not certain if you have the code exactly as you have shown it or … -
Replied To a Post in Including C++ files
> I understand if only one or two functions are used that it is impractical, but what happens if you need almost all of the functions in the other file? … -
Began Watching Including C++ files
Is it poor convention to create a c++ file only to store various functions, and then include it into the main.cpp? This would be done so that the functions could … -
Replied To a Post in Including C++ files
Unfortunately, yes, it is. [This post](http://forums.devshed.com/programming/514904-simple-calculator-post2001351.html#post2001351) should help explain why. The solution is to compile the source files in such a way that they can be linked into a single … -
Replied To a Post in Help!! How to change text and background color.
Oh! I forgot a fairly important detail: restoring the previous cursor location. You'll want to get the x and y value at the beginning of the function, and restore them … -
Replied To a Post in Help!! How to change text and background color.
OK, as I said earlier, there are two waya to do this. One is to read each character from the video buffer, and write it out again with the new … -
Replied To a Post in Help!! How to change text and background color.
OK, that does explain some things, but I am puzzled still. I've assembled the code in question, and wrote it out to an image file, but... well, as it is, … -
Replied To a Post in Assembly code for countdown timer
OK, then. I assume by TASM you mean Turbo Assembler (there's more than one TASM around), probably the DOS version, correct? What version of Windows (I'm assuming it is Windows, … -
Replied To a Post in Help!! How to change text and background color.
Ah, this explains a few this. OK, a few points I should make regarding the writing of a boot loader like this, before I answer your problem. You might want … -
Began Watching Help!! How to change text and background color.
I want to change text and background color without clearing the screen. Ive used this code but it always clear the screen. mov ah, 2 ; use function 2 - … -
Replied To a Post in Help!! How to change text and background color.
The main thing that is happening is that you need to advance the coordinates as you write to them. If you are always writing to (0,0), you'll constantly overwrite what … -
Replied To a Post in Program of self education
Oh, and the MIT OpenCourseware site also hosts the [Abelson-Sussman Lectures](http://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-001-structure-and-interpretation-of-computer-programs-spring-2005/video-lectures/), which I highly recommend if you are *really* serious about it. You'll want to read the [textbook](http://mitpress.mit.edu/sicp/full-text/book/book.html) they go … -
Began Watching Program of self education
Hi if someone there is a student at Cs university or institut please give me the full program of Bsc in computer-science:Software engeneering and bsc computer-science:computer engeneering and wich one … -
Replied To a Post in Program of self education
I doubt anyone here could encapsulate a whole bachelor's degree program into a single post, or even an extended thread (though mike_2000_17 might be able to manage it :-) ) … -
Began Watching Assembly code for countdown timer
Can someone suggest a code that accepts (hh:mm:ss) and counts down until all variables reach 00 -
Replied To a Post in Assembly code for countdown timer
Aside from the question of whether we will give you code for this outright (we won't), we would need to know what type of computer this is for, what operating … -
Began Watching Convert console to windows gui application
Hi I am beginner in c++ , I have a console project and want to convert it to windows application , after 6-7 days trying I couldn't convert it and … -
Replied To a Post in Convert console to windows gui application
First off, no one here is going to download a ZIP file off of an unfamiliar site, sight unseen. Even if *you* didn't put a virus in the archive, there … -
Began Watching design pattern
Does the design pattern play any important role in the development of quality applications by using structured and object oriented paradigm? Justify your answer with logical reasons. -
Replied To a Post in design pattern
First off, we don't do other people's homework for them. Second, we *don't* do other people's homework for them. And third, ***we don't do other people's homework for them***. Sensing … -
Began Watching TASM add operation
Here is the simple program for addition when running in tasm it gives some garbage value and I cannot figure out what is the error hi Please any help will … -
Replied To a Post in TASM add operation
There are a number of issues with this code, but the main one is that you are trying to write out an integer with a DOS call that is for … -
Began Watching [win32] - about joystick
i'm trying to understand some joystick structure: http://msdn.microsoft.com/en-us/library/windows/desktop/dd757112%28v=vs.85%29.aspx but isn't easy. at least these image help me more(joystick layout): https://onedrive.live.com/?cid=C3EF456E15C8DEB6&id=C3EF456E15C8DEB6!1259&v=3 but i need ask more: 1 - the Hat and …
The End.