by shar1
take 5 numbers from 10
|
how to use if else statement to get 5 greater numbers from 10 numbers that will be input by user |
Mar 29, 2013 at 3:24pm
[1 reply] : What have you got so far? Does this help? http://cplusplus.com/doc/tu... (by moorecm)
|
by Jakey113G
Simple error with closing my function (+ additional questions)
|
So I was only going to come on here for help with some thing more complicated but then I made this e... |
Mar 29, 2013 at 3:10pm
[no replies]
|
by dariusd7
Student Person class program c++
|
I have to debut this program, I almost got it to work, but when it runs, it hangs after it displays ... |
Mar 29, 2013 at 2:55pm
[4 replies] Last: Thank, you I made all the changes and it works. (by dariusd7)
|
by deklerkb
Undefined reference to error / No matching function
|
Hi, I'm busy with an assignment and have this below problem which I just cant seem to find a solu... |
Mar 29, 2013 at 2:38pm
[no replies]
|
by krutuk
Problem with a function
|
Hi everybody! I try to create same little function with 2d vector as argument to it, but my compiler... |
Mar 29, 2013 at 1:55pm
[5 replies] Last: Thanks guys for all. I understood. (by krutuk)
|
by Felicia123
quick sort c++
|
#include <iostream> using namespace std; void quickSort( int * , int , int ); int main(){ ... |
Mar 29, 2013 at 1:52pm
[2 replies] Last: haha. i change to left = 0; right = size -1; worked . what a st... (by Felicia123)
|
by kw1991
can a program become a windows service?
|
i have a very basic client server program in c++ console application where the client sends a messag... |
Mar 29, 2013 at 12:31pm
[4 replies] Last: any suggestions on how i could do it? (by kw1991)
|
by kyiro37
Guess if the next card is higher or lower?
|
Usually I can get through my homework assignments no problem...not sure why I am having trouble. I n... |
Mar 29, 2013 at 11:11am
[5 replies] Last: Gah! Thank you! I had it set as an integer! (by kyiro37)
|
Game Programming |
Ive started using SFML, and SDL and they are quite easy but I dont know if hey are game engines... I... |
Mar 29, 2013 at 10:46am
[6 replies] Last: thanks for the answers (by closed account LN7oGNh0)
|
by Jymmy
Problem in searching an array
|
Hey guys, i am a noob in programing,i would apreciate some help in this issue. i have to create a... |
Mar 29, 2013 at 10:39am
[4 replies] Last: Thank you so much, just changed the last fid = read; to fid =read; an... (by Jymmy)
|
by Observer
multiple definition of `operator<<(std::ostream&, Error const&)'
|
Hello Please, help me! This code from the book: Professional C++ By Nicholas A. Solter, Scott J. Kl... |
Mar 29, 2013 at 9:40am
[9 replies] Last: vlad from moscow, thanks very much! ( Огромное спасибо ... (by Observer)
|
by firstTym
makefiles
|
hi, i am trying to do a makefile i have done most of the things they want except this question: A c... |
Mar 29, 2013 at 9:03am
[1 reply] : actual dependencies of mainProgram: Motorbikes.cpp Vans.cpp Trucks.cpp... (by MiiNiPaa)
|
by Tiger58
How to declare dynamic arrays????
|
Hello, I am not sure how I should go about declaring a class array with a pointer. Should I do somet... |
Mar 29, 2013 at 8:14am
[2 replies] Last: Thank you just needed to make sure (by Tiger58)
|
by tomazi
Iterators
|
Hello People...! I am quiet fresh to C++ and programming in general, I am writing an OpenCv appli... |
Mar 29, 2013 at 7:24am
[3 replies] Last: The type of Point is irrelevant. For the first issue, I think the bes... (by Stewbond)
|
debug help |
hi im writing a program to calculate the bmi number, atm i coded the choice between imperial and me... |
Mar 29, 2013 at 6:26am
[2 replies] Last: thanks for the help, i scrapped the conversion functions and opted to ... (by Jack Laughdale)
|
by zukias
Why are default constructors necessary?
|
All the tutorials I have watched & read on objected oriented programming in C++ tell me to use defau... |
Mar 29, 2013 at 6:11am
[3 replies] Last: http://publib.boulder.ibm.com/infocenter/comphelp/v8v101/index.jsp?top... (by MiiNiPaa)
|
by newbieg
Stopping pointer reference
|
I have a function that converts data from a file to a string using getline() then to char* then to w... |
Mar 29, 2013 at 5:30am
[3 replies] Last: I opened the file using ifstream because I couldn't find a win32 ver... (by Disch)
|
Using Getline |
Hello, I am currently a beginner in C++; I'm working on a small task to write a program that promp... |
Mar 29, 2013 at 4:22am
[6 replies] Last: never replied back, I resolved my issue thanks to all who helped in th... (by closed account S3TkoG1T)
|
by Anshh
how can i take input in const char * in c++ ?
|
how can i take input in const char * instead of a string ? |
Mar 29, 2013 at 4:11am
[1 reply] : by declaring that to be your input type, I suppose. void UseConstCh... (by bradw)
|
by mrronoah
Can this code be shortened?
|
Hi I am a beginner and I am just wondering if this code can be shortened and how it would be done. I... |
Mar 29, 2013 at 3:46am
[1 reply] : Here's one method using arrays: #include <iostream> int main(int ar... (by fg109)
|