How far have you got and where are you stuck? We won't write the program for you but we will help you figure it out. Have you figured out an...
The idea of this assignment is that you learn by doing, not by posting the whole lot to a web forum and expecting someone else to do it for you....
You asked what parts of what you said were false. Just about every point you made was false. > Because free will clear the first location which...
Programming Windows by Charles Petzold is *the* definitive guide to starting programming Windows. It's not free but it is an excellent book. You...
Please use code blocks when posting code.
Absolutely. free(p) will free the 12 bytes that were allocated by malloc(12). sganesh, wherever you got that idea from, it's complete nonsense....
Doing people's homework for them is less help than you think. It doesn't help them learn. They enter a good program so the teacher doesn't see...
How can we help you when you don't describe the problem?
By the looks of it the output from int num = 0, den = 0, num2 = 0, den2 = 0; cout << "What is" << num<< "/" << den<< "*" <<...
Could you answer the questions please. That's if you want some help, of course. I went to the effort of thinking through them and typing them...
You can't post links cos you're new. It's a measure designed to stop spammers creating accounts and spamming us with links. This restriction is...
What exactly is the problem? We can't read your mind. What input did you give, what output did you get, did it match what you expected, and if...
What does it mean to have an array of values continuously? Could you give an example? What simulator are you using? There are lots available and...
How far have you got and where are you stuck? Post the code you've written so far.
A PayPal withdrawal of $62.82 works out as having a $2.45 fee, and the fee is less for less than that (3.4%+$0.316) so actually to match PayPal...
hey shabbir one of us is misreading the Fees page at Moneybookers. It might be free to receive money into your MB account but to convert that...
http://lmgtfy.com/?q=html Top hit is Wikipedia, no doubt with some useful links, and there were two links titled "HTML Tutorial" in the first...
How far have you got and where are you stuck? Have you sorted out your data model yet (doesn't matter if you need to change it later)? Are you...
Only if you've got enough stack space. If you haven't then you have to (a) use goto or (b) unroll the loop.
Answer must be tail recursion then: void test2a(int i) { if (i<10) { printf("%d ",i); test2a(i+1); } } void test2() { test2a(0); }
Separate names with a comma.