Beginners - March 2009 (Page 17)

In trainer Working...
 
Im making a trainer for AQW(http://www.aqworlds.com/) and the only thing to hack it is to manipulate...
[no replies]
a doubt in functions
 
Recursivity. Recursivity is the property that functions have to be called by themselves. It is usef...
[3 replies] Last: Thank you Bazzy..... (by Harlequin)
learning windows programming...
 
I am a beginner with resonable knowledge in c++....(i know about the function arrays etc...)......ca...
[2 replies] Last: can u tell what all i need to know.......tell me a good site where i... (by Harlequin)
adding string in a string....
 
i try to write a program which can add string in a certain string example word : i try...
[1 reply] : If you are trying to change eg. "happy" to "happiest" try to see if... (by Bazzy)
by psc165
Using loops
 
I have been stuck on this problem for hours, does anyone have any insight as to how to do this. W...
[1 reply] : for (int i = 1;i < 5;++i) { for(int j = 1; j < i; ++j) { ... (by onur)
Sudoku problem
 
*DELETED*
[1 reply] : A real sodoku-generator will get a little more complex... I would u... (by Scipio)
by layla
reading a file in reverse order
 
hi I have a question. I try to print a ascii file in reverse order( bottom-top). i've tried t...
[2 replies] Last: If you can use C++, it has the seekg ifstream member function (by Bazzy)
Infinite loop
 
Im createing a number guessing "game" for my computer programming class. It works fine up until th...
[2 replies] Last: Thank you (by Enserric)
Swapping the contents of a vector
 
Hi, I'm trying to make a function that swaps the contents of a vector that contains integers. ...
[5 replies] Last: Thanks for your replies. jsmith: Thank you very much for pointi... (by chungolongo)
'std' : illegal use of namespace identifier
 
Hi There, I'm just learning C++ so am learning about input/output and trying to figure out what's...
[1 reply] : std::cout << "Your favorite number is" << iNumber << std:endl; Yo... (by Return 0)
Retrieving data from a file (.dat)
 
I am new to fstream, and I need help ASAP! My goal is to make a program that opens a .dat file an...
[1 reply] : Load the entire file into an array or vector and then use the find() a... (by eker676)
Greatest common divisor error
 
I am having trouble returning the correct value of the GCD of two integers. The number returned is ...
[3 replies] Last: hehe your gcd function is much better than mine! gonna use yours :) (w... (by tition)
Breaking up a string
 
Hi I need a simple way to break up one string into several strings. An example of what i need is to...
[1 reply] : Given string foo = "Hello World" or char foo = "Hello World"... (by jsmith)
main() use in other functions that main() uses.
 
In findNum(), I use a loop to test for characters(Each alphabetical character is represented by a nu...
[2 replies] Last: ahh, thank you! What a simple answer. Haha (by Treseler)
by masiht
void to pointers
 
// pointer to functions #include <iostream> using namespace std; int addition (int a, int b) {...
[5 replies] Last: Thank you bazzy .this example is easier. (by masiht)
by pamcor
how will i break this C++program?
 
can you help me solving this program? As i enter a number, all the output is print on the screen.. ...
[1 reply] : You should use && instead of || : if ( speed<=74 && speed >55 ) You... (by Bazzy)
by audrei
how to program...?
 
I have a problem i programming can you help me.? < I want to make a program to solve for the value ...
[4 replies] Last: Multiple posts, same topic: http://www.cplusplus.com/forum/general/832... (by jdd)
Iterator doesn't work properly
 
Here is a snippet of my code that has the problem for(std::vector<int>::iterator i = list.begin(...
[11 replies] Last: So it would be something like myList.erase( std::remove_if( myLi... (by jsmith)
How do I make a program read the data?
 
I need help with an assignment. First of all, I am a BEGINNER at C++, so I need simplified answers s...
[1 reply] : The way you are getting input from the file is overwriting the user in... (by Bazzy)
by vir
Problem with looping
 
can anyone help me solve problem with printing a diamond.. i just know the first that we should mak...
[4 replies] Last: thx, my problem solve.. (by vir)
March 2009 Pages: 1... 1516171819... 29
  Archived months: [feb2009] [apr2009]

This is an archived page. To post a new message, go to the current page.