by Simjeff
How to ?
|
|
[6 replies] Last: #include <iostream> #include <string> #include <set> using namespace ... (by lastchance)
|
by ndcn541
understanding character pointers
|
|
[2 replies] Last: Just cast b d to say long int (or long long int for x64). It will then... (by seeplus)
|
by samyulg
Class definition?
|
|
[2 replies] Last: to allow the user to enter a item until the user wants it to stop, a... (by seeplus)
|
by chebyrek
How I can go it?
|
|
[5 replies] Last: Thanks for the help. I used your output and framed in my code and ever... (by chebyrek)
|
by Walkup
Trouble w/vector and while
|
|
[10 replies] Last: [quote=jlb]it'll make your cod much easier to read. I'm not sure this... (by MikeyBoy)
|
by spistol
Problem to write CGI variable to a log file
|
|
[5 replies] Last: Problem is solved. My fault was an unavailability of the log file with... (by spistol)
|
by chebyrek
I have array and I need display numbers divisible by the same number?
|
|
[6 replies] Last: If you want to store the numbers, then using a map: #include <iostr... (by seeplus)
|
by siabapet
How to make output AND,NOT,OR,XOR
|
|
[8 replies] Last: > Make logical operator AND,NOT,OR,XOR: What do you mean 'make'? Are ... (by salem c)
|
explain the code please |
|
[3 replies] Last: thank you so much, this helped a lot!! :) (by laura fidarova)
|
by Leevi
Do While loop breaks when typing charecter
|
|
[2 replies] Last: Hello Leevi, To expand. Formatted input, i.e., cin >> test; , means... (by Handy Andy)
|
by Cintru
Creating a " triangle row" using arrays
|
|
[2 replies] Last: it works well enough , thank you ! (by Cintru)
|
by DonnaPin
printing out box issue - explanation needed
|
|
[7 replies] Last: Thank you for the replies. I was mostly looking for an explanation abo... (by DonnaPin)
|
by yem
Casting Strings as Ints
|
|
[11 replies] Last: Or as C++: unsigned int hash(const std::string& str, size_t mod) { ... (by seeplus)
|
by winter89
Reading input file txt and sorting it out in output file txt
|
|
[2 replies] Last: Either to much work or got answer and left. Hello winter89, It just ... (by Handy Andy)
|
by colinseven
Creating a POS Receipt
|
|
[4 replies] Last: Hello colinseven, This is only set up for 1 input, but it should give... (by Handy Andy)
|
by tgp23
10x10 Battleship game 2d array issue
|
|
[6 replies] Last: Hello tgp23, Things left, commented our, are there so show why they a... (by Handy Andy)
|
by Austink95
Making a calculation based on the operator a user inputs
|
|
[3 replies] Last: switch requires an integral type. Even a char array won't work with a ... (by deleted account xyzzy)
|
I would like your opinion on this code |
|
[2 replies] Last: The sleeping,i thought would break the pattern the random numbers have... (by closed account o35DwA7f)
|
by anneranch
passing pointers to object in C++
|
|
[5 replies] Last: CCC_LocalAdapters *LocalAdapters_info = new CCC_LocalAdapters(QList<Q... (by MikeyBoy)
|
Creating an appointment scheduling program using queue doubly linked lists |
|
[8 replies] Last: And if you modify that code in the above sample to bring it into line ... (by againtry)
|