Search Results

Showing results 1 to 40 of 41
Search took 0.74 seconds.
Search: Posts Made By: ithelp ; Forum: C++ and child forums
Forum: C++ Nov 10th, 2009
Replies: 8
Solved: Homework Help
Views: 418
Posted By ithelp
If you have writtern the code , you would not need someone else to make you understand what is going on .
Forum: C++ Nov 1st, 2009
Replies: 4
Views: 391
Posted By ithelp
Try g++ -Wall file.c , I guess some of the apis you are using does not work with g++ .
Forum: C++ Sep 8th, 2009
Replies: 19
Views: 647
Posted By ithelp
You need to learn postfix notation and use a stack to evaluate an expression , kerninghan and rithie C book has got code for basic calculator.
Forum: C++ Jun 8th, 2009
Replies: 4
Views: 672
Posted By ithelp
Check if heapalloc is failing.
Forum: C++ May 4th, 2009
Replies: 4
Solved: plz help!
Views: 337
Posted By ithelp
That is quite simple , give it a try , you can finish it in an hour.
Forum: C++ Feb 28th, 2009
Replies: 12
Views: 714
Posted By ithelp
Use argc and argv .
Forum: C++ Feb 6th, 2009
Replies: 6
Views: 397
Posted By ithelp
if(str1[i]==str2)

This line is error prone.
Forum: C++ Jan 31st, 2009
Replies: 4
Views: 375
Posted By ithelp
There are programming lanuguages written specifically for AI , e.g. LISP, C++ is not that suitable for AI, better try some easier topic for your project assignment.
Forum: C++ Dec 16th, 2008
Replies: 6
Views: 1,314
Posted By ithelp
If you initialize all objects in their constructors , those objects which got initialized, destructor will get called as well.
Forum: C++ Nov 25th, 2008
Replies: 7
Views: 2,590
Posted By ithelp
Include path of what ? I guess you need to add it in your makefile.
Forum: C++ Nov 6th, 2008
Replies: 7
Views: 1,617
Posted By ithelp
You can use minix and modify source code here and there , you will never be able to write a new OS code yourself.
Forum: C++ Oct 24th, 2008
Replies: 3
Views: 465
Posted By ithelp
But why do you need vector of vectors ?
Forum: C++ Oct 7th, 2008
Replies: 3
Views: 673
Posted By ithelp
Yes I guess , also you might need to change name of the executable in html file.
Forum: C++ Sep 10th, 2008
Replies: 4
Solved: c++ mentors
Views: 442
Posted By ithelp
Buying the C++ book by stroustrup and doing all the exercises will serve same purpose.
Forum: C++ May 27th, 2008
Replies: 4
Views: 480
Posted By ithelp
Define all the constructors.
Forum: C++ May 27th, 2008
Replies: 3
Views: 2,549
Posted By ithelp
No you cannot convert , are you looking for something like this ?

char *a="hellp";
char b = *a ;
Forum: C++ Apr 4th, 2008
Replies: 2
Solved: HI all
Views: 550
Posted By ithelp
I guess you need to pass filename.c_str() .
Forum: C++ Apr 2nd, 2008
Replies: 7
Views: 1,423
Posted By ithelp
You can also use template if it is allowed for your homework however.
Forum: C++ Mar 26th, 2008
Replies: 74
Views: 4,480
Posted By ithelp
You cannot compare string like that use functions like compare ,etc.
Forum: C++ Mar 7th, 2008
Replies: 26
Solved: SNMP Libraries
Views: 6,205
Posted By ithelp
I could use netsnmp from sourceforge successfully for unix.
Forum: C++ Mar 4th, 2008
Replies: 4
Views: 2,279
Posted By ithelp
term += 1/(x*(x+1));
or
term = 1/(x*(x+1));
?
Forum: C++ Mar 3rd, 2008
Replies: 18
Views: 1,687
Posted By ithelp
I hope this is a C++ project assignment, you are not using c++ types like std::string which could simplify your coding.
Forum: C++ Jan 17th, 2008
Replies: 14
Views: 1,759
Posted By ithelp
Except for the facts like C++ has more keywords, so int new; will not compile in C++, but it will work without any problem in C.
Forum: C++ Jan 17th, 2008
Replies: 73
Solved: data c++
Views: 8,675
Posted By ithelp
In .txt , read the text file using fstream
Forum: C++ Dec 19th, 2007
Replies: 16
Views: 2,179
Posted By ithelp
Try to implement some difficult algorithm, pick something like image processing, etc, also check sourceforge.net however do not copy and submit it as your project assignment.
Forum: C++ Dec 13th, 2007
Replies: 9
Views: 920
Posted By ithelp
This is probably the shortest piece of C++ code ever written by someone :)
Forum: C++ Dec 9th, 2007
Replies: 2
Solved: quiz
Views: 906
Posted By ithelp
You can keep the question and answer in afile and read from it.
Forum: C++ Dec 5th, 2007
Replies: 9
Views: 7,137
Posted By ithelp
You can find such library at sourceforge.net
Forum: C++ Nov 28th, 2007
Replies: 13
Solved: array elements
Views: 1,345
Posted By ithelp
use abs .
Forum: C++ Nov 8th, 2007
Replies: 5
Solved: c++ algorithim
Views: 1,018
Posted By ithelp
3(3(3(3x+1)+1)+1)+1 < 500
Forum: C++ Nov 8th, 2007
Replies: 9
Views: 2,833
Posted By ithelp
Can you not use the string apis ?
Forum: C++ Nov 7th, 2007
Replies: 57
Views: 13,181
Posted By ithelp
Download something from sourceforge, if you can understand the code, modify each lines of code and then submit it as your homework, if you cannot understand it, you might get caught. So it is better...
Forum: C++ Nov 3rd, 2007
Replies: 4
Solved: program help
Views: 759
Posted By ithelp
Rather posts the portion of the code which is giving you trouble, and also detail the problem that you are facing.
Forum: C++ Oct 21st, 2007
Replies: 10
Views: 5,749
Posted By ithelp
You have to write it as a window service.
Forum: C++ Oct 12th, 2007
Replies: 3
Solved: Newbie
Views: 525
Posted By ithelp
I think the C++ book "Thinking in C++ " available online, just search it in google.
Forum: C++ Oct 11th, 2007
Replies: 37
Views: 3,752
Posted By ithelp
Use >> in lieu of getline (it is not a C++ function)
Forum: C++ Jun 13th, 2007
Replies: 4
Solved: why link error
Views: 1,122
Posted By ithelp
where have you defined delete?
Forum: C++ Jun 7th, 2007
Replies: 3
Views: 890
Posted By ithelp
Forum: C++ May 16th, 2007
Replies: 2
Views: 1,198
Posted By ithelp
I think only book you will ever require is C++ by Bjarne Stroustrup.
Forum: C++ May 16th, 2007
Replies: 13
Views: 5,323
Posted By ithelp
Yes use pow(abs(n) ) *abs(n)/n
Showing results 1 to 40 of 41

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC