351 Posted Topics
Re: Hi thanks for your comments on my blog but I didn't let it through because it's unrelated to my blog's theme. Hope you understand. :) Anyway, from your description of what you would like to code, I would recommend C/C++ to you. | |
Re: Hi welcome to Daniweb! I wasn't that familiar with basic (used it around 15 years ago), but there's a Visual basic sub section here. | |
Re: There's a few problems to your codes. Basically, to solve your error, you just have to interchange the below two lines: [Code] #include "SkipCard.h" using namespace std; [/Code] However, I believe the below line will give u an error: [Code] if (input=="skip") [/Code] You should use the compare method of … | |
Re: yes you can. But remember to deallocate the memory when it is no longer needed to prevent memory leak. Normally I would do something like this for dynamic allocation: [Code] Contestant* C = NULL; C = new Contestant; if(C) // test valid allocation { // do whatever you want here … | |
Re: You can use any loop, be it for-loop, or while loop, or do-while loop. For the latter two, you just need to increment the counter within the loop and check for it at the condition place. | |
Re: Its better for you to post your query in the relevant forum. Anyway, welcome to Daniweb! | |
| |
Re: Welcome to the forum! Wow, from programmer to musician, and back to programmer (web), that's impressive! | |
Hi all, I am new here....hope to learn and contribute to this forum. Have a nice day! :) | |
| |
| |
Re: Your question is really too vague. And from your question, I guess you do not have much programming foundation. So why you wanna start doing something that is relatively complicated? | |
Re: How are people going to debug without looking at the code? | |
Re: Please list down the errors you got so that we can help to analyze which parts go wrong. | |
Re: Functional requirements normally deal with the functions that the software is supposed to offer. For eg. add/delete/modify inventory items. Non-functional requirements deal with intangible items like stability, reliability, threshold, user-friendliness, etc. |
The End.