by geekocoder
input of scanf
|
|
[1 reply] : jeez, just use google. http://www.cplusplus.com/reference/cstdio/scan... (by mutexe)
|
by dhilchie
passing pointers and arrays
|
|
[2 replies] Last: The name of an array is also a pointer to the first element of the arr... (by MikeyBoy)
|
by beginner123
how to save item in memory
|
|
[2 replies] Last: I would write the file to a /tmp file, that way if the server reboots,... (by SamuelAdams)
|
by Ramzi89
Const static arrays and classes
|
|
[6 replies] Last: // header file item.h class item { protected: std::string... (by JLBorges)
|
by rihardmarius
Pointers to functions
|
|
[16 replies] Last: how would it be to pass a function as an argument to another function... (by Cubbi)
|
by optimisez
OOP
|
|
[6 replies] Last: And where can I find documentation about bool operator==(Item& aItem)... (by optimisez)
|
by Scipio
flexible class operators
|
|
[3 replies] Last: Nope. You're not going to be able to do that. You could use an ar... (by AbstractionAnon)
|
by Hvqc
Help with a database?
|
|
[1 reply] : You could take a look at SQLite3. There's an example here: http://www... (by kbw)
|
Copying bytes from txt file |
|
[2 replies] Last: size_t n = 5; std::string line; while ( n && std::getline( YourFil... (by vlad from moscow)
|
by Vigii
Is there any predefined functions in C++ for differentiation
|
|
[2 replies] Last: Please see: http://www.cplusplus.com/forum/beginner/65749/ (by condor)
|
by mrm40
using array members
|
|
[4 replies] Last: ok mrm40, you're welcome! (by condor)
|
by sermanas
String in switch statement
|
|
[4 replies] Last: If you do as vlad said you will be using C# and no longer C++. (by Peter87)
|
by spriggan
problem in understanding stacks and queues
|
|
[1 reply] : by looking at the traversal, i can say its a circular queue, google ci... (by SirSmilesaLot)
|
by AphexBravia
Basic Do While Loop
|
|
[5 replies] Last: ^ Cheers mate, ill try that from now on. (by AphexBravia)
|
by SourceCoded
Some trouble with vectors and classes
|
|
[1 reply] : the error pretty much says it all: on line 30: you pass a string whil... (by coder777)
|
by Ch1156
Read words from file, choose one then output
|
|
[3 replies] Last: http://ideone.com/UIcIF8 (by naraku9333)
|
by ChoppySticks
Saving data entered by the user?
|
|
[1 reply] : Yup! Go to documentation and go down to input/output tutorials. It wi... (by Hambone)
|
by sakonpure6
FStream Help Please!
|
|
[1 reply] : Never Mind I GOT IT WOOOOOOOOOT! OMG it feels so nice when the program... (by sakonpure6)
|
by a sk
Method return type?
|
|
[6 replies] Last: Thank you! I managed to fix it now. Below output. 8 4 [0,0]0 [0,1]1 ... (by a sk)
|
by Ramzi89
confusion with comparison of char
|
|
[3 replies] Last: cool cool makes perfect sense. Thankyou. (by Ramzi89)
|