by DrZoidberg
Problem with listing files in a directory
|
|
[1 reply] : Never mind, I was just being stupid and using cin instead of cin.getli... (by DrZoidberg)
|
by nichalos82
Unexpected IF statement result
|
|
[9 replies] Last: @kesk: I apologize if I overlooked the format. My mistake @donnie: I... (by nichalos82)
|
by toast9
mystery problem array size
|
|
[4 replies] Last: There's no way that was the problem. The compiler sees "8" and "1+7" a... (by Duthomhas)
|
by ayagomaa
Defining a function
|
|
[4 replies] Last: you call a function with the name of the function followed by (). i... (by CodeGoggles)
|
by Irhcsa
Please help me with this
|
|
[9 replies] Last: Thank you to Gawaine and firedraco. This was my first time posting for... (by Irhcsa)
|
by mickey4691
mountain-shape of stars
|
|
[3 replies] Last: You'd probably have a much easier time of it if you were to write your... (by Duthomhas)
|
by CodingisFun
Pass the information to function
|
|
[4 replies] Last: bumps? (by CodingisFun)
|
Operators - redefinition |
|
[6 replies] Last: lol (by closed account jvqpDjzh)
|
by jmo5262
Smallest value in string array
|
|
[2 replies] Last: THANK YOU! (by jmo5262)
|
by Starhowl
Bloodshed Dev-C++: Including *.OBJ
|
|
[5 replies] Last: Sorry, I haven't found an answer to this. (by Chervil)
|
by Matome
PrimeChecker.cpp:24:1: warning: control reaches end of non-void function [-Wreturn-type]
|
|
[1 reply] : Get rid of the else on line 22? (by cire)
|
by shyy
Help with operator overloading
|
|
[2 replies] Last: Thanks for your input, I solved it :) This is how my class is, more f... (by shyy)
|
by moot1
Help with calculator
|
|
[1 reply] : Add another case label for '1' between lines 68 and 69? Also, use a... (by LB)
|
by jmo5262
Counting consecutive strings in array
|
|
[1 reply] : Line 8: Declaration of an array of strings that has no elements. Li... (by keskiverto)
|
Segmentation fault? |
|
[2 replies] Last: Segfaults usually happen when you try to illegally access memory. Her... (by MrHutch)
|
Comprehension failure. |
|
[1 reply] : I've scratched my head at code for a lot longer than two hours, don't ... (by MrHutch)
|
Printing the elements of a matrix |
|
[3 replies] Last: Simply add 1 at the time you print out the indexes. cout << "a[" <... (by AbstractionAnon)
|
by kimss90
Code Efficiency help!!! Please!!
|
|
[16 replies] Last: Can you make this code runnable? Because, I'm a beginner of c++ yet... (by kimss90)
|
Simple array question |
|
[7 replies] Last: I seemed to have fixed it this way but I'm not sure if its really the... (by AbstractionAnon)
|
by Mizfizz
Declarations vs Definitions
|
|
[10 replies] Last: int i; - A definition which also serves as a declaration. int c=10;... (by cire)
|