by piggekott
Error:expression must be a modifiable Ivalue
|
|
[4 replies] Last: Thanks i used == and it works now thanks :D (by piggekott)
|
by Ad0rable
Integer problem
|
|
[4 replies] Last: This is probably not what your after... #include <iostream> #i... (by AlphaBravo)
|
by duegogo
Parenthesis in Declaration Question
|
|
[3 replies] Last: Almost, but not the same. Suppose a constant attribute or one that ha... (by ne555)
|
by pabloist
Using typedef?
|
|
[8 replies] Last: Oh..that makes a lot of sense. Now that I look at my code, I'm wonderi... (by pabloist)
|
by mp9191
Problem with cin.peek()
|
|
[4 replies] Last: If you know that you are reading a number, why don't you read it as a ... (by ne555)
|
by LostCoder
Time of day from decimal number
|
|
[2 replies] Last: Thanks ,that worked perfectly. (by LostCoder)
|
by MugenTenshin
Simple multidimensional array problem
|
|
[2 replies] Last: Thanks for your reply. I understand the problem now. I initially thoug... (by MugenTenshin)
|
by Maerle
What's the meanig of ?
|
|
[2 replies] Last: [quote=Maerle]what is NULL and the function exit();? They are prog... (by PanGalactic)
|
by Analyzer
Why won't this compile
|
|
[4 replies] Last: I spent atleast a half and hour re reading this over and over again. B... (by Analyzer)
|
by mp9191
Determining the data type while reading in ints and chars from file
|
|
[2 replies] Last: Thank You! (by mp9191)
|
by Erdrigard
Virtual functions and templates
|
|
[6 replies] Last: [quote=Erdrigard]I do usually split up classes into separate h and cpp... (by guestgulkan)
|
by Maerle
what's wrong with the program? (decimal conversion)
|
|
[2 replies] Last: yees you are so sure i did this now cout << "Programa para c... (by Maerle)
|
by JaYs007
I cant rectify errors in this c++ program made by my friend
|
|
[2 replies] Last: What are you expecting this line to do? struct DATE date:d; ... (by Galik)
|
by gcampton
ifstream as global variable
|
|
[2 replies] Last: it's going to be one of those days :( thanks. edit: now I've go... (by gcampton)
|
Loop Problems |
|
[4 replies] Last: *Slaps head* Doh! I guess I was making it too hard on my self. Thanks ... (by strychnine213)
|
by cmdcenter
how to check if a FILE is open
|
|
[1 reply] : if you call fopen, you can check for NULL FILE* is for C file I/O ... (by Bazzy)
|
by fistsers
do while looping problem
|
|
[6 replies] Last: int main{ int loop = 0;//set before looping char option;//yay... (by hamsterman)
|
Random "rand()" and srand(time(NULL)) |
|
[4 replies] Last: You can replace time(NULL) with any interger eg: srand(1234); ( i... (by Bazzy)
|
transaction history |
|
[1 reply] : See the fstream reference on this site. (by Athar)
|
by areid
Converting a double into a String
|
|
[1 reply] : Um... if (value<0)cout << "undefined" << endl; else cout << log10... (by Athar)
|