Start with a short program that just compares the first character in the first two arrays and displays the difference. Then you can add (a)...
"bro", WHAT ARE THE ERRORS? You said there were errors, we can't read your mind or see your screen, so you have to tell us these things.
Vim isn't a compiler, it's an editor. Don't confuse your tools. You edit programs with a text editor, then save and exit (recommended, cos if...
That's not what I meant at all. Don't know why it works, it shouldn't, because you're now counting from 1 to 60 in tenths, so that should be...
A better solution is to use polymorphism. class base { public: int a; }; class t1 : public class base { public: long h; }; class t2 :...
On computers, numbers are stored in binary. And they have limited storage space, so when the conversion reaches that limit, it stops. Think of...
You're pretty much going to have to rewrite it from scratch; this code uses a lot of C++ specific syntax all of which is invalid in C. However...
Nobody will do your homework for you but we can give hints. How far have you got with the project and where are you stuck? Note that you will...
A low level language is something like Assembler. This works directly with the hardware and is generally hardware specific. C abstracts many...
In fact you may even find there's an example in the documentation.
RTFM, it will explain all. Question is worded "academically", so the idea is that you figure it out *for yourself* and the point of the example...
If you're spending all of your time allowing and disallowing the most r*I*diculous of tasks, then you're doing something very wrong. I use...
Someone else recently posted the same question. Read his thread instead of posting your own. Didn't he get an answer? Then why do you think you...
How far have you got and where are you stuck? Do you understand the requirements? How do you think it might work (i.e. outline the basic...
Please use code tags when posting code. It's right there in the posting guidelines. Why do you need to ask if it's correct? Does it work as you...
The idea is that *you* are supposed to write the code. The test is testing your programming skills, not mine. Post what you've got so far and...
There are lots of ways to do it. Here's one. int monthValue(int month,int year) { if (month==2 && is_leap_year(year)) { // you didn't...
There's no way you can be anything other than a beginner in C++ if (a) you don't know who Stroustrup is, (b) you don't know how to use Google and...
With main missing it appears you've built the program as the wrong kind of project. main() starts a command line program, so did you try to build...
Good idea, except that gotoxy moves the cursor on the screen and has absolutely bu99er all to do with string manipulation.
Separate names with a comma.