Help with primes program (1,2) |
|
[25 replies] Last: @ProgramingNewb I sent a reply to your message. (by Chervil)
|
by Tate
Issue with too many arguments for function...
|
|
[4 replies] Last: Understood now... Thank you so much!! (by Tate)
|
by Qmechanics
Doing arithmetic
|
|
[2 replies] Last: Oh okay thanks, the problem was with the ";" after int main, the retur... (by Qmechanics)
|
could somebody help me and give me a few tips? |
|
[2 replies] Last: V = length*width*depth; A = 2*(length*width) + 2*(width*depth) + 2*(... (by martianxx)
|
by vgoel38
binary search tree
|
|
[2 replies] Last: problem is solved. the error is in line 28. :) (by vgoel38)
|
by vishalonne
how to acces alternate element of a 2D array
|
|
[1 reply] : C=C+2 is always going to give you 0th and 3rd element. If you increase... (by codewalker)
|
by Sarah93
command window
|
|
[3 replies] Last: When your projects get complicated enough, and if you still prefer ... (by Lowest0ne)
|
by tooawesome
Dividsion by zero not show error
|
|
[7 replies] Last: Try to avoid infinite loops like this: for(;;) { You would be much... (by TheIdeasMan)
|
by AIVIO
Define a 2D array with Dynamic Memory
|
|
[1 reply] : b is a pointer. What you need is a pointer to pointers. int **b; /... (by Catfish2)
|
by Fovv
Number Guessing Program
|
|
[18 replies] Last: @ enemy Please start your own separate thread for your question, as ... (by Chervil)
|
by Fox123
invalid conversion & operator
|
|
[1 reply] : It's just the compiler trying to stop you from making a mistake. // y... (by Catfish2)
|
by Lindz
Should I get an error message?
|
|
[12 replies] Last: Anyways thankyou so much! Yous have really helped :) (by Lindz)
|
by abry
invalid conversion from 'int*' to 'int'
|
|
[1 reply] : " ctr " (not the formal parameter) is an array of " int ". The express... (by closed account zb0S216C)
|
by spiderr12
case'&&':
|
|
[5 replies] Last: Since a " char " (signed or unsigned) can hold only one character, you... (by closed account zb0S216C)
|
by skarla
SDL BASIC
|
|
[8 replies] Last: thanks dude... (by chipp)
|
by SoulReign
while loop isnt looping
|
|
[8 replies] Last: @chipp It's not the cout << y; that causes the problem, it's the ci... (by vlad from moscow)
|
by AIVIO
Polynomial Search
|
|
[3 replies] Last: Interpolation search, then: http://en.wikipedia.org/wiki/Interpolation... (by helios)
|
program won't continue after I read in a file |
|
[1 reply] : You're using the same ifstream everywhere. You're not checking, in mo... (by cire)
|
Calculating Mean & Standard Deviation using functions |
|
[11 replies] Last: Current Code: #include <iostream> #include <iomanip> #include <strin... (by ricecracker96)
|
by zkl
Understanding this code
|
|
[3 replies] Last: ok, now i get it. 0 is to be counted as 1 so when the condition is <3... (by zkl)
|