by takedown134
using function to create retangle
|
|
[2 replies] Last: thanks for the hint, that help alot (by takedown134)
|
by ahhhxtc
Program that assigns grade
|
|
[1 reply] : That's because scanf() is trying to get an integer and it doesn't see ... (by Zhuge)
|
by jcooper
Several questions
|
|
[4 replies] Last: Are you using XP or Vista? I just read an interesting, if advanced,... (by grcunning)
|
by shadowayex
Need C++ functions (I'm a beginner)
|
|
[4 replies] Last: I've never tried to do that before, however, I recall that SDL (Google... (by Poke386)
|
by DragonKnight
Loop problem
|
|
[1 reply] : Use a do-while loop. do { // Code goes here. }while( condit... (by MMZJSFMMX10MM)
|
by pimster987
Problem using arrays
|
|
[3 replies] Last: char a =("my name"); for( int n=0;n<20;n++){ if(a ==... (by pimster987)
|
by DragonKnight
Open a simple .txt file
|
|
[14 replies] Last: You can try something like this: ifstream file("File.txt"); strin... (by Bazzy)
|
by mcleano
Global scope
|
|
[11 replies] Last: The Reference section on this site is comprehensive. Check it out; re... (by seymore15074)
|
by DragonKnight
Hey new to coding.
|
|
[2 replies] Last: How about if I use some code like this? int main () { int num... (by DragonKnight)
|
by Azrad
char vs <fstream> ?
|
|
[2 replies] Last: Hi Max, Thanks for the input. So I took your advise and changed tha... (by Azrad)
|
by EVLCrusader
Simple Concept Progaram Problem; Ends After Input
|
|
[2 replies] Last: Okay I fixed those minor problems (the checker+ is accidentally left o... (by EVLCrusader)
|
by bangura87
audible beep?
|
|
[4 replies] Last: '\7' is the same as '\a' and it's the 'alert' character which will... (by Bazzy)
|
by luckyvictor
Problem with dynamic array
|
|
[8 replies] Last: Yes on all counts. If you've overwritten memory, the applications b... (by kbw)
|
by dfullbrook
Overloaded ^ ? What does this code do?
|
|
[2 replies] Last: It is a handle in C++/CLI (See: ECMA-372) handle — A handle i... (by closed account z05DSL3A)
|
by andrewt
how should I consider operators?
|
|
[3 replies] Last: You can get characters and than is up to you parsing them and performi... (by Bazzy)
|
by buckler
code back to pseudo code
|
|
[2 replies] Last: line 18: that means ah.scan = ah.scan (bitwise) OR 2 in binary: ... (by Bazzy)
|
by zirong
check on number of times a specific element appear...
|
|
[2 replies] Last: You can use the count algorithm http://www.cplusplus.com/referenc... (by Bazzy)
|
fibonacci algorithm? |
|
[2 replies] Last: You may be able to use "unsigned long long". double only has 12 digits... (by turbozedd)
|
by kayem01
expected primary expression before void?
|
|
[2 replies] Last: ah thanks.. yah right i have many more to debug..like the void display... (by kayem01)
|
by tan247
Sentinel Controlled Loop
|
|
[5 replies] Last: Thanks for all of the feedback. Initializing them to 0 got rid of the... (by tan247)
|