by steallen
using IF statements
|
|
[2 replies] Last: Thankyou Zhuge! Your helpful guidance is most appreciated!! (by steallen)
|
by dardar
STRTOK question
|
|
[4 replies] Last: Hello dardar, in the link above it says: C string to truncate. Th... (by coder777)
|
by jonjondavid
somebody teach me how to make a program with BOUNCING TEXT?
|
|
[4 replies] Last: You could at least show people what you've started rather than just co... (by rej3kt)
|
by tresk21
C++ math.h functions
|
|
[7 replies] Last: Thank you all so much for your help. I really appreciate you guys taki... (by tresk21)
|
by jellyfish
Variable not declared in this scope
|
|
[2 replies] Last: Thanks. I need to make lesser of such mistake >.< (by jellyfish)
|
by halopower67
How do i assign things on a .txt list to a variable?
|
|
[1 reply] : When the right-hand side of << is a... what is info? Ah, yes, a charac... (by Albatross)
|
by jpperera
ASSISTANCE NEEDED!!! Thank you
|
|
[14 replies] Last: This operator accepts one parameter, which can be either a type or a ... (by Albatross)
|
by rassilon256
Logical operators in a function
|
|
[2 replies] Last: Of course, thanks. Wood for the trees and all that. I've always been a... (by rassilon256)
|
by martinhiggs
Using limits to give an error message for a negative, non-integer
|
|
[2 replies] Last: And just to let you know that you can, you could actually crunch that ... (by closed account 1yvXoG1T)
|
by Algorithms
Great C++ Beginners Tutorial
|
|
[no replies]
|
by ALOTANOTA
every 3rd integer
|
|
[2 replies] Last: Hamsterman, Thanks for your reply. That example returns the same resul... (by ALOTANOTA)
|
My first program |
|
[2 replies] Last: return 0; is not necessary for the main function, as it will implici... (by Athar)
|
by linsll68
Code will not compile for program using class/derived class
|
|
[10 replies] Last: My apologies. Now I see why I was supposed to include the tags. I upda... (by linsll68)
|
by wtf
Trying to learn pointers.
|
|
[1 reply] : In the first loop you're assigning list->next (which is uninitialized)... (by Athar)
|
by airowe
Inheritance/Polymorphism Issue
|
|
[2 replies] Last: #include <iostream> #include <iomanip> using namespace std; #inc... (by airowe)
|
by berabus
Best practice, global variables
|
|
[2 replies] Last: Thanks dude, just seems like i am creating variables in main and tr... (by berabus)
|
by wtf
What could be causing this:
|
|
[2 replies] Last: It checks if N = 0, and it exits the program telling the user (i.e. me... (by wtf)
|
by Bluetoe
Can't understand array sorting code.
|
|
[2 replies] Last: void sort (int n) //the function takes the length of the array { ... (by blackcoder41)
|
equality on char type |
|
[8 replies] Last: if(strcmpi(name,"bob")==0... Eww, no. strcmpi is not even part of t... (by Athar)
|
by ARWA
how to call the base func in the derived class!
|
|
[11 replies] Last: from what you posted I don't see any reason fo that "pointType " is N... (by coder777)
|