by nincek
A problem with my code
|
|
[4 replies] Last: Thanks a lot man! The code you sent works and pointed me to the right... (by nincek)
|
by ProgramStuff
Very Simple Program
|
|
[2 replies] Last: In your main program you're getting user input, but you're never calli... (by booradley60)
|
by spaceman13
Anyone have any idea?
|
|
[2 replies] Last: as Chriscpp said the range of numbers [a , b-1] can be determinated b... (by MohamedDZ)
|
For loop assistance |
|
[4 replies] Last: Yes you are correct. Sorry it is in this format rand() % ( Max - min... (by giblit)
|
by Emma Naylor
How to write a struct that shows a fraction?
|
|
[8 replies] Last: I was able to ask my instructor and completed my program without using... (by Emma Naylor)
|
by Jaycs
question on arrays
|
|
[2 replies] Last: Thank you!! I have played with my code. maybe I should be more specifi... (by Jaycs)
|
by navig8tr
cin vs getline()
|
|
[1 reply] : > Our instructor has expressed his preference of getline() over cin in... (by JLBorges)
|
by muuucow
How to print the letters backwards
|
|
[1 reply] : Your current inner loop starts with lowest index and then steps ++j to... (by keskiverto)
|
Help with a simple guessing game. |
|
[no replies]
|
by weave
Passing dynamic array to function
|
|
[2 replies] Last: I feel silly posting now. Thanks for the second pair of eyes. (by weave)
|
by MaggieLow
How to define array which size is do not know yet
|
|
[8 replies] Last: Erm, yeah... I was testing you XD I was wondering if someone would sp... (by TheBeardedQuack)
|
by jon smith
Need help with quadratic equation program (1,2)
|
|
[39 replies] Last: Basically you want to pass by reference when it is a large class/struc... (by giblit)
|
by pronesti
Strange function declaration in header file.
|
|
[1 reply] : You didn't paste all of the code. This is for linking. In C++, the co... (by LB)
|
by LearningMan
Defining Question
|
|
[2 replies] Last: In that code snippet, you're defining HumanAge as an argument (or para... (by MikeyBoy)
|
by noisycoder
Writing into multiple files
|
|
[1 reply] : 1) Is there a more efficient way than opening and closing files every... (by MikeyBoy)
|
by Chedderlord
Dice Roll problem using arrays?
|
|
[2 replies] Last: #include<iostream> #include <cstdlib> #include <ctime> using namespac... (by Chriscpp)
|
by ryanskyowa
counting odd negative integers
|
|
[3 replies] Last: ok so the whole thing will look like this: int main () { int odd = 0;... (by ryanskyowa)
|
by Kimber
Random generation
|
|
[1 reply] : do this: int val = rand() % 51 + 10; // % is modulo/remainder Note ... (by coder777)
|
by Lnvictus
Inputting a text file and manipulating the data inside it
|
|
[5 replies] Last: you won't really be needing getline since you are just fetching number... (by nvrmnd)
|
by vikillav
hw help (final question of semester)
|
|
[5 replies] Last: http://www.cplusplus.com/faq/sequences/sequencing/sort-algorithms/ ... (by a k n)
|