by tomvidm
Code efficiency and returning multiple values
|
|
[4 replies] Last: Using structs seems to make more sense, so I will stick to that Or yo... (by MiiNiPaa)
|
by Tenom722
Writing a file to a specified path...
|
|
[5 replies] Last: UPDATED CODE: #include <iostream> #include <vector> #include <strin... (by Tenom722)
|
by etrusks
problem with -->while (std::cin >> currNum)
|
|
[4 replies] Last: shout if you have a problem. i coded up an example while i was eating ... (by mutexe)
|
by LilianaVess
Read 20000 .wav data
|
|
[3 replies] Last: But when I use sizeof(long), the program returns me some stuff weird.... (by coder777)
|
by maglia
C++ flowchart
|
|
[1 reply] : I don't know much about C++/CLI i'm afraid (as what you've posted isn'... (by mutexe)
|
switch case break |
|
[4 replies] Last: Okay Thanks I get it haha (by Christian0555)
|
by UMK Games
C++ graphics tutorial for beginners
|
|
[no replies]
|
by Vandalism
Delete Entry
|
|
[7 replies] Last: Thank you! It now works! The only problem i had is my structure is a c... (by Vandalism)
|
by patriic48
Can´t find out the code for character < in c++
|
|
[1 reply] : @patriic48 cout << "\x28 \x29" << endl; cout << char(40) << "... (by whitenite1)
|
by DexterMorgan
Array of objects without explicit constructors
|
|
[1 reply] : I replied to your other post. (by kevinkjt2000)
|
by SusieMartin1
C++ Program to square a number
|
|
[4 replies] Last: well if your just squaring it u can just do it times its self. #inc... (by kmtompkins)
|
Parsing |
|
[1 reply] : Use a vector of strings: http://www.cplusplus.com/reference/vector/vec... (by kevinkjt2000)
|
by Selver
Reading from text file
|
|
[4 replies] Last: Okay, I feel retarded. I included fstream but declared my infile as of... (by Selver)
|
by meme44
Help with Shapes!
|
|
[1 reply] : Try understanding the underlying mathematical pattern first. Each row... (by kevinkjt2000)
|
by Maria96
Homework Assignement. Please, help
|
|
[1 reply] : What if you would go directly into a string, and sort it both ascendin... (by keskiverto)
|
Undefined var still prints |
|
[2 replies] Last: Yes, indeed num1 was defined by you. num1 was defined by you in line ... (by tipaye)
|
by jhoda26
Automata theory!!!!!
|
|
[1 reply] : Where do you get stuck? What part do you not know how to do? What do... (by kevinkjt2000)
|
by mozart23
Unknown error in the code.
|
|
[4 replies] Last: I'm guessing you did copy & paste with this. If so, you didn't get pur... (by tipaye)
|
How to make a program or function run within a specified time period? |
|
[3 replies] Last: A bare-bones do-little example then: #include <unistd.h> #include <ct... (by tipaye)
|
Triple character in char array.. |
|
[11 replies] Last: Keskiverto is right. The best way to do this is to use std::string, b... (by dhayden)
|