
please wait
by talent80
POS with inventory
|
Im writing a program that has point of sale and I would like to have Inventory control at POS here is my code so far there is alot missing with my menus and suc... |
May 3, 2011 at 5:30pm
[no replies]
|
Errors in classes |
Hi all, I'm trying to compile this program, but I'm getting errors; #include <cstdlib> #include <iostream> #include <cstdio> class weight{ pr... |
May 3, 2011 at 4:55pm
[3 replies] Last: Ah, not entirely sure how I missed the class name out :P but thank you... (by Jonnyisonfire)
|
by Harry909
Advice?
|
Hi, i'm new with C++ and i want to start simple, but first i would like some advice. Iformation about me: I use Dev-C++ 4.9.9.2. I've read 12 tutorials. ... |
May 3, 2011 at 4:51pm
[6 replies] Last: Thanx (by Harry909)
|
by Love236
if (firstnumber % 2 != 0)
|
If i am correct then the % divides a number and collects its remainder, at this point i want to see wich numbers are odd and wich are even. what does the title ... |
May 3, 2011 at 4:39pm
[6 replies] Last: No problem, anytime. (by Mohamed Fouad)
|
by marniel647
Searching a word in a text file
|
hello forum i just wanna ask how can i search a word in a textfile.. i know the basic of input and output stream... now i want is to search a word in the textfi... |
May 3, 2011 at 4:28pm
[1 reply] : This can easily be done as follows: #include<fstream> #include<iostr... (by Mohamed Fouad)
|
by yassar
Open image..
|
Hi, How do you Open a file image in C++, not like LoadFromFile(""); But like.......the user would click...File->OPen->and choose a file of there choice and... |
May 3, 2011 at 3:32pm
[no replies]
|
by zz77z
2D Array sorting?
|
how could i output the sum of the array rows on the screen in form of biggest row sum to smallest row sum.? for exampel we have this 2D Array : 3 2 3 ... |
May 3, 2011 at 3:24pm
[1 reply] : struct Row{ //this could be a template class int r ; //you co... (by hamsterman)
|
by rsegecin
Help with code
|
Hi. I´m new to C++, but I already worked with C, and I´m having some trouble to work with OO together with pointers. The code below is aimed to manage pile it... |
May 3, 2011 at 3:19pm
[1 reply] : You can't have arrays of undefined length (line 13). Either choose a ... (by hamsterman)
|
by firix
class locale
|
hi, What makes a class locale? http://www.cplusplus.com/reference/std/locale/locale/ |
May 3, 2011 at 3:12pm
[no replies]
|
by pops1423
File input and output
|
Where on this site is some helpful information about this question? Write a program that asks the user for their name (in one variable), address (in a second... |
May 3, 2011 at 2:50pm
[3 replies] Last: #include <iostrean> #include <fstream> #include <string> using namesp... (by marniel647)
|
by NoteToSelf
Base and Derived classes: default constructors?
|
I'm trying to create a database using maps. The default constructors for the base class and the derived class essentially add details to these maps. (Create an ... |
May 3, 2011 at 2:43pm
[2 replies] Last: Adjusted - sorry about that; My initial plan was to create a "databas... (by NoteToSelf)
|
by Love236
possible? If (score == 90-100) ???
|
How can i make it possible to if (score == 90-100) cout << "you are a winner\n; ? I basically want it to success if it it from 90-100 |
May 3, 2011 at 2:24pm
[6 replies] Last: @Love236 Please, mark this thread as solved. (by Mohamed Fouad)
|
by Love236
Can main() return a value to another method?
|
As the title says, is it possible for main to return a value to another method? |
May 3, 2011 at 12:19pm
[3 replies] Last: In my knowledge. No. (by writetonsharma)
|
by vodkaman6661
Help with switch
|
Hi im new to programming and the forum. :) I'm creating a text game in C++/ C using just cout, cin, switch etc as I dont want to over do it on my first go.. ... |
May 3, 2011 at 10:46am
[2 replies] Last: Opps! I just added a break and it worked like a charm :) Thank you v... (by vodkaman6661)
|
by stylish
FIND INTERVAL
|
hi every one i have to write a programme to find the interval for which tan(x)=2x please help me to find algorithem to find interval for this equation ... |
May 3, 2011 at 10:04am
[2 replies] Last: You could try Newtons method for finding the roots of an equation: htt... (by closed account D80DSL3A)
|
by cheeeeseface
Write a program converting Base 10 numbers to any base from 2 - 16
|
Can someone give me some advice/hints in regards to writing a program that takes a decimal number from the command line and converts this number in REVERSE orde... |
May 3, 2011 at 9:48am
[14 replies] Last: I don't think below code is doing the correct comparison assume argv i... (by sohguanh)
|
by baker091
Need help with array average
|
#include <iostream> #include <cmath> using namespace std; int main() { // Prompt the user to enter array size cout << "Enter array size: "; int... |
May 3, 2011 at 9:32am
[1 reply] : First: Use code tags [co de] Your code #include <iostream> #incl... (by coder777)
|
by miaria
Array of strings vs array of pointers?
|
These are the instructions for my assignment: Write an application that uses random-number generation to create sentences. Use four arrays of strings called ar... |
May 3, 2011 at 8:53am
[1 reply] : #include <string> and then declare your arrays like this: std::stri... (by m4ster r0shi)
|
by Dog Gon Mad
Assistance Needed: Variable type used in ambiguous code.
|
Hello, I am going through a book concerning physics simulation and gradually porting is to AS3. My problem is that the variable type is being called in the co... |
May 3, 2011 at 7:51am
[5 replies] Last: Take a book on C like "The C programming language" and start reading a... (by writetonsharma)
|
by firix
isalpha() and isdigit() (1,2)
|
Define a set of overloaded versions for isalpha(), isdigit(), so that these functions work correctly for char ,unsigned char ,and signed char bool isdigit... |
May 3, 2011 at 7:43am
[21 replies] Last: question in this way.I'm not asking the question, C + + creator asks. (by firix)
|