- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 15
- Posts with Downvotes
- 9
- Downvoting Members
- 9
21 Posted Topics
Hello, androidz if you need any help in C, C++ , assembly, Java, VB. Feel free to contact me at SNIP
Nice article. I only wish you include a few more more pics to get a better view of the game.
[QUOTE][CODE]cout << number1 <<[/CODE][/QUOTE] There is syntax errror in line. Every C/C++ Statement must end with semi-colon. Check this and all other statements below this line.
Hello Kim, if I am right. We have no interaction for nearly two days now. I like your post. Now my reply:- Best : the time we spend together. Worst : the time we spend in separation thinking about each other. Manoj
use multiple loops for this example, use two for , while or do while statements. Best is for loop, as there is possible initial condition, predetermined no of possible iterations required, just check the pattern for the character yourself and make the necessary increment value. -Manoj
Firstly, help me in understanding your problem fully by replying some queries about your system and program requirements : q1: Isn't this module/macro for some microcontroller. q2: are you prepared to work in [B]assembly[/B] or [B]C languages[/B] to get your job done. If answer to anyone, or both these questions …
Name - Manoj Kumar Wali Nickname - Man, MKW Height - 5' 7" Weight - 54KG Hair - Black with o Eyes - 2 of 'em Location - Udhampur, India Age - 32 Hobbies - Programming, Programming, and Programming Relationship Status - single Fav Music - oldies Education - B.E. …
Well delle, I feel that XMasterrrr is right in suggesting you to use Vs2010. Actually, vs 6 is very good for designing stand-alone application for windows using VB 6. I also used it a lot. There seem to be some problem with all the old C++ compilers such as vC …
Well, graff23 if you have any problem still in your code, then post your latest current code alongwith any problems. -Manoj
Any Free and feature-rich Web- Authorization tool for Web-Publication. The Tool should support templates and should be according to latest w3c specifications, please help. I have signed at geocities and tripod Web-hosting site for free accounts. Should I use the in-built tools or upload my designed website. ( Any Suggestions …
Hello xshinichix, if it does not hurt you, your code is in complete out of order state. It might be compiling OK, but there is some logical problem in it. Let me repair it one by one. 1. Firstly, put your code in code tag. It is very annoying to …
well, alex use rand() and randamize() function. ( as given in one of the previous post). use arrays only if you are a beginner. otherwise use vectors or pointers. For pointers, I am giving a helpful code snippet [code=c] randimize(); . . . for ( i = 0; i != …
For why to make use of vectors, the answer is very simple. They make programming easier to maintain and modify later. They Produce compact code. They are part of STL of standard C++ Implementation. You should read a good C++ book covering STL. I think that will help you much …
Looking at your code, I have find the possible error. problem is in line no 80 of your code. you cannot declare a method in C++ as temp( char *, char * ) and call it later as temp (void ) in main. Just upon reexamining your code, your program …
Well, You cannot put the semicolon at the end of if statement and hope it to see the else if clause statement correctly. [code=c] if (x > y ); // remove this semi-colon. printf ( " x is greater than y. " ); else printf ( " y is greater …
Try to use fflush() function. May be that will solve your problem. -Manoj
No, they are quite different. typedef is just like that you are creating a new name for old datatype ( int, etc ). For example, if you are making a game, say you have to keep track of lot of scores. You can safely typedef int/ float to say SCORE. …
well Sinaru, this problem is very simple. I will explain this in my next post. Firstly, I need a little help from you. [code=c] #include <stdio.h> int main (void ) { printf("Hello to DanWeb\n"); return 1; } [/code] Here is a simplest program I can made. Now, the problem is …
Well, I can say one one thing that if using const keyword, why try to change it. By undefined behavior, Narue may be trying to tell you that its state and result cannot be predicted. Also, it is compiler defined, which can give error message or if it is not …
Well, USE unsigned int UI_MemoryUsed = GetMemoryTotalPhys(); and TMemoryStatus *ms = new TMemoryStatus(); if you are using Borland C++ Compiler. Also, see [URL="http://www.daniweb.com/forums/thread305575.html"]http://www.daniweb.com/forums/thread305575.html[/URL] Thread on this site. Thanks.
The End.
manojwali