by Alpha001
Printig data for a perticular decimal range
|
|
[2 replies] Last: Thank you.It works. (by Alpha001)
|
by leourb
Nested While Loops with Pointers
|
|
[6 replies] Last: You don't actually need the break because return ends the function. (by shadowmouse)
|
by Alpha001
Pointer problem in c++
|
|
[2 replies] Last: #include<bits/stdc++.h> using namespace std; struct data{ int *p; ... (by Alpha001)
|
by DarkChemical
execute action once when the criteria is met
|
|
[4 replies] Last: Solved. Used it like void loop() { //Read push on button A; A_is =... (by DarkChemical)
|
by Maurycy5
Why doesn't string work in switch?
|
|
[2 replies] Last: Thank you very much. I think I quite uderstand what you wanted to tell... (by Maurycy5)
|
by sasauke
Macro that compares variables
|
|
[4 replies] Last: [quote=sasauke]I had an "if" statement that compared a variable to 13 ... (by LB)
|
by novelous
c++ encryption project
|
|
[1 reply] : encrypts a group of predetermined folders on a computer(with a predet... (by MiiNiPaa)
|
by tristan1333
SDL_Image
|
|
[4 replies] Last: What do your project settings and folder layout look like? (by Avilius)
|
by pacman169
int to character array
|
|
[4 replies] Last: The standard way to convert int to string in C is with sprintf int i... (by andywestken)
|
by codeextint
MERGE ARRAYS
|
|
[4 replies] Last: You were asked in your previous thread to use code tags when posting c... (by MikeyBoy)
|
by sr123
creating your own linked list, how????
|
|
[1 reply] : So what is your question? What have you done to solve the problem, and... (by MatthewRock)
|
by Axarator
Only one button works in delicious car game
|
|
[2 replies] Last: You have your braces wrong. All the cases should be enclosed in a sin... (by MikeyBoy)
|
by n4nature
Assigning return value of a function to reference variable
|
|
[4 replies] Last: > if the function returns null? What does 'null' mean in this context... (by JLBorges)
|
by kekie
Map to user-defined class
|
|
[5 replies] Last: > actually correct way is to do that: > rooms.emplace(std::piecewise_c... (by JLBorges)
|
by mave
Is "Virus -Malware" a user space program or a Kernel Space Program ?
|
|
[1 reply] : Please, do not double post. It clutters forums and spreads attempts to... (by MiiNiPaa)
|
by Radar
Unknown error with my code
|
|
[4 replies] Last: Your loop on lines 17-24 checks whether the unsortedArray contains an ... (by keskiverto)
|
by skt333
When reading from text file, How to read from the second line instead of the first line?
|
|
[4 replies] Last: You already have it... #include <iostream> #include <fstream> usi... (by SamuelAdams)
|
by Jokernxs
class program for grades need help please
|
|
[1 reply] : cin >> moreGradesToCalculate; //... cin.getline(response,256); http:/... (by MiiNiPaa)
|
by pfjf2
lists and dynamic variables
|
|
[10 replies] Last: but they are created on the stack. Technically vector stores data in... (by MiiNiPaa)
|
by leourb
delete[] - Pointers
|
|
[4 replies] Last: Thanks.. All clear now! :D (by leourb)
|