
please wait
by josepho16
structure loops
|
I run this program, as I'm trying to learn structures better, and it doesn't work. There are no error messages. Rather, it goes through the steps of asking for ... |
Feb 19, 2014 at 2:38pm
[2 replies] Last: it did, thank you (by josepho16)
|
C++ Input Output Library |
I have come to a question in C++ Primer (p 314 , exercise 8.1) that is not clear to me. "Write a function that takes and returns an istream&. The function shou... |
Feb 19, 2014 at 2:36pm
[4 replies] Last: LJBorges - thank you for this solution code (by closed account ypfz3TCk)
|
by entchen
strstr Rückgabe ohne 2. String
|
Hallo. ich habe einen Eingabestring, in denen sich mehrere Zahlen ( mit Whitespace getrennt) befinden. Nun möchte ich eine Zahl einlesen, und danach soll e... |
Feb 19, 2014 at 2:28pm
[2 replies] Last: perfekt, danke! (by entchen)
|
by dsasson
Calculator Help
|
So I'm trying to code a compounded interest calculated and I'm having trouble with the power function. It doesn't yield the correct results, I have no idea why.... |
Feb 19, 2014 at 2:26pm
[1 reply] : Looks fine to me. Maybe you can try double instead of float. But that ... (by plexus)
|
by venkatacplpl
while and For loops with semicolon
|
Hi All, There is this function to accept input from the keyboard char*getstring(char*mesg) { char s ,i *destin; cout<<mesg<<endl; cin.get(s,... |
Feb 19, 2014 at 2:23pm
[1 reply] : Get one character from cin and store it in s . Repeat this until get(... (by keskiverto)
|
by adriyel
Creating Simple Classes (C++)
|
Hello experts! :) Our teacher told us to make something like: ---------------------------->Arrow Release ------------> Ranged --> ------------------------... |
Feb 19, 2014 at 2:21pm
[3 replies] Last: depends on what you should use it for. if you want on function that ev... (by sumsar)
|
by micros24
Display from highest to lowest using arrays
|
I need help of how do you output the highest to lowest(not highest and lowest) using arrays from user input. I have no idea but to use for loops and if statemen... |
Feb 19, 2014 at 12:13pm
[3 replies] Last: http://en.wikipedia.org/wiki/Bubble_sort (by keskiverto)
|
by FilipPav
%% in while?
|
Hello guys, im pretty new to c++ and i just discoverd the syntax, but i have a problem(sorry for my english).When i put %% in while like this: } while ((... |
Feb 19, 2014 at 11:55am
[2 replies] Last: Thanks! Made a giant mistake :D (by FilipPav)
|
by Xendraw
outputting from a queue
|
I can access the values directly, but am having trouble accessing the data via the queue, just for a simple output, what do you guys reckon? #include <i... |
Feb 19, 2014 at 10:37am
[no replies]
|
by stanz
I need your help guys
|
How to construct this for C++? Please help me. |
Feb 19, 2014 at 10:14am
[2 replies] Last: A switch case could work. Here's an example http://cppgo.wordpress.... (by lorilew)
|
by TheSajidAli
Two Dimensional Array
|
Write your question here. #include<iostream> using namespace std; int main() { int matrix , row, col, maxrows = 2, maxcols = 3; // get values for the m... |
Feb 19, 2014 at 9:06am
[2 replies] Last: its a long read but i can follow it in some time thanks (by TheSajidAli)
|
by entchen
C++ Datei einlesen Abbruchbedingen über 2 Zeilen
|
Hallo. Ich habe folgendes Problem... und zwar Lese ich eine Datei(.unv) Zeile für Zeile ein. Ich lese z.B. aus dem Block 15 die Messwerte ein und möchte... |
Feb 19, 2014 at 8:52am
[10 replies] Last: und bestimmte werte aus dem array direkt an bestimmte Typen übergebe... (by coder777)
|
by Victini13542
Return Value 0
|
Is it possible to remove the message that says 'Process exited with a return value 0' after the program ends? |
Feb 19, 2014 at 8:47am
[4 replies] Last: Oh. (by Victini13542)
|
by andrix
template class specialization
|
hi, i would like to write a basic general class (using template) and an other class that specialize the previous (add specific methods and use a particular t... |
Feb 19, 2014 at 8:41am
[1 reply] : Friendship, maybe. http://www.cplusplus.com/doc/tutorial/inheritance/ ... (by iQChange)
|
by kuop
help with repeating a do while loop
|
#include<iostream> #include<string> using namespace std; int main() { int n1; int groupsize; int total = 0; int total1 = 0; char userInput; ... |
Feb 19, 2014 at 8:35am
[4 replies] Last: You have a couple of problems. After the while (n>0), you do int curr... (by closed account iAk3T05o)
|
by amitk3553
increment the data stored in an array
|
I have to increment the data stored in an array. like int a; a++; unsigned int arra_11 = {0}; How is it possible? |
Feb 19, 2014 at 8:22am
[5 replies] Last: Good old for each for ( unsigned int & x : arra_11 ) ++x; std::vala... (by keskiverto)
|
Non-type template arguments? Advantages? |
http://www.cplusplus.com/doc/tutorial/functions2/ Bottom of the page. I can see the advantage with the first type of template...reduced code...but I can't q... |
Feb 19, 2014 at 8:07am
[3 replies] Last: Here are a couple more: #include <iostream> template < typename T, ... (by JLBorges)
|
by muddaser
help
|
how to find maximum in only coloums in 2d array.????? |
Feb 19, 2014 at 7:32am
[6 replies] Last: The only way for him to know ahead of time is if it is a constant stat... (by giblit)
|
by fapyfapy
Find order in array
|
Thanks giblit, I found that by initializing whenOccurs to -1, adding the break and moving return whenOccurs out one bracket, it works. |
Feb 19, 2014 at 7:15am
[1 reply] : There are a few problems. First you will reassign the value if you fin... (by giblit)
|
by PinkSphinx
Linked List: Insertion, Deletion..
|
Hi, what's wrong with my code? Why it isn't running? #include "stdafx.h" #include < iostream > #include < conio.h > #include < stdlib.h > using names... |
Feb 19, 2014 at 7:14am
[10 replies] Last: Just wrote a big write up here but then realized something that is pro... (by randisking)
|