
please wait
by unagidon
[closed]
|
=== Thanks, guys |
May 27, 2013 at 2:52pm
[4 replies] Last: Putting original code back. Please, do not delete your question after ... (by MiiNiPaa)
|
by shrina
function skipping
|
i have function that return values so how can i skip the first two functions and read the third function in main function it's like this one- int main(... |
May 27, 2013 at 2:39pm
[4 replies] Last: Your function selectOption () uses values returned from the functions ... (by pogrady)
|
by Dan Feerst
counting with char arrays
|
Here is what I am trying to do I have a one dimensional char array to which the size is set at runtime eg. char array I have another one dimen... |
May 27, 2013 at 1:46pm
[6 replies] Last: something like... void increment_string ( std::string& s ) { for ... (by abhishekm71)
|
by nikki1337
more efficient method?
|
I do not know why my method is not working. |
May 27, 2013 at 1:17pm
[6 replies] Last: Please, go to tutorial section of this site and go again through lesso... (by MatthewRock)
|
by RoastChicken
Magic Square
|
Hello, i am new in this forum as you can see, i hope someone can help me out with this little problem, i have coded a magic square program in c++, it is working... |
May 27, 2013 at 1:17pm
[7 replies] Last: Thanks guys! Will try that out. Cheers (by RoastChicken)
|
by zolo
reading and writing files
|
Hi, I am completely new to the forum and this is my fist post so I apologize in advance for inappropriate words. I am not a programmer but I have to use c++ ... |
May 27, 2013 at 12:09pm
[9 replies] Last: Now I just have to understand why! fstream (C++98) does not take a st... (by coder777)
|
by dgcharitha
Ncurese printing shapes problem
|
now that my problem is i want to print a shape like below but all my coding is invain coz its not hapenning so can any one correct my coding the shape i want... |
May 27, 2013 at 12:08pm
[2 replies] Last: thank u vry it worked (by dgcharitha)
|
by henrymorgan
help for ceaser cipher program
|
how does this program works ? can you explain step by step? #include <cstdlib> #include <iostream> using namespace std; int main(int argc, char *... |
May 27, 2013 at 11:32am
[2 replies] Last: thank you so much . now everything is clear (by henrymorgan)
|
by Ispira
Where to begin with basic game programming?
|
Hello everyone, I've recently been picking back up on C++ where I left off a while ago. What I want to begin doing is learning how to make games using C++ (S... |
May 27, 2013 at 9:35am
[2 replies] Last: SFML looks very promising, Thank you for the very straightforward, hel... (by Ispira)
|
by DeniLeet
decimal number
|
Write your question here. float c; float total; float average; float number ; cout<<"Number of units... |
May 27, 2013 at 7:30am
[6 replies] Last: Oh man. mine worked to lol but thx . ive just recognized that (1+2+3+... (by DeniLeet)
|
by science
Arrays
|
so I am making a multiplication table using 2d arrays but it wont show correctly could some one guide me right please. #include <iostream> #include<ioman... |
May 27, 2013 at 6:57am
[4 replies] Last: ahhhhh i c, man thank you very much (by science)
|
Decryption Program Broken |
I am terrible at this. Learning a lot though. Can anyone point out where I went wrong? #include<iostream> #include<fstream> #include<string> using na... |
May 27, 2013 at 6:29am
[1 reply] : At first glance, line 77 should be else if (ch == ' ') . I don't hav... (by Branflakes91093)
|
by chokfull
Binary sort in large array.
|
Hey guys! First post. I'm having trouble with a binary sort with an enormous array. for(int i = 0; i < used; i++) { sorted = false; while(sorte... |
May 27, 2013 at 5:37am
[2 replies] Last: Oh my god, really? Well, thank you. I wonder why it was only affecting... (by chokfull)
|
by Incognito20
How do you learn programming?
|
What is the best free way to learn coding without buying anything?I found some of the explanations in online C++ tutorials are quite limited and unclear. |
May 27, 2013 at 5:20am
[6 replies] Last: Incognito20, I found http://www.cprogramming.com/tutorial/lesson1.htm... (by Donnie)
|
by symbit
cin skips a line, how to disable?
|
I'm writing a simple RPG, and am trying to utilize cin and switch, but my issue is that cin always skips one line, rendering me unable to use between menu borde... |
May 27, 2013 at 5:12am
[3 replies] Last: cin? or cout? They are very different objects. For cin: cin will by d... (by Daleth)
|
by Nubcake95
Char Pointers
|
I'm trying to work out whats the difference between all these char's and consts and what not. Searched a lot but I'm unsure about a few things whilst experiment... |
May 27, 2013 at 4:48am
[3 replies] Last: //After declaring C-string, an example of: // 1) modifying what is... (by Daleth)
|
by dillona4
Bifid cipher implementations won't compile
|
I'm trying to write the implementations for a program that will encipher/decipher input from the user using a bifid cipher based on a polybius square, but when ... |
May 27, 2013 at 4:42am
[no replies]
|
by eliposin
Function for intrest rate (C not C++ please)
|
I am currently taking a C++ class, however we are learning C before starting C++ and I am required to write a function that will calculate the intrest on a loan... |
May 27, 2013 at 4:41am
[1 reply] : http://easycalculation.com/mortgage/loan-payment-amount.php (by ats15)
|
by kathrine
Strings rand
|
Write a program that uses random-number generation to create sentences. The program should use four arrays of pointers to char called article, noun, verb and pr... |
May 27, 2013 at 4:29am
[4 replies] Last: I dont know why its not generating 20 sentences... Do you mean your ... (by Daleth)
|
by catdance
Won't write to file
|
This seems like it should work. I've ran my program and added a customer. At the end, she appears on the screen just fine but she's not appearing in my output f... |
May 27, 2013 at 3:47am
[4 replies] Last: I forgot the function that reads the file. Here it is. It does read ... (by catdance)
|