by CeErre
using FOR issues!
|
|
[6 replies] Last: #include <iostream> int main() { for ( int i = 9; i; i--) std::cou... (by lastchance)
|
by HelpMeBro
int Array[]
|
|
[15 replies] Last: Thanks a lot, everyone. (by HelpMeBro)
|
assistance with Logical NOT Operator |
|
[1 reply] : Let's say you have a function that returns a bool. bool foo(); No,... (by doug4)
|
by briancb2004
function Prototypes First timer
|
|
[7 replies] Last: Thanks jonnin after you said that I remember using that way before and... (by briancb2004)
|
by propvgvnda
Connect main.cpp, functions.h and functions.cpp
|
|
[1 reply] : $ g++ -c main.cpp $ g++ -c functions.cpp $ g++ main.o functions.o -o ... (by ne555)
|
Homework help |
|
[8 replies] Last: The display question raised at the start is solved thus: #include <... (by againtry)
|
Cannot convert '__gnu_cxx::_alloc_traits<std::allocator<std::_cxxll:basic_string<char> (1,2,3) |
|
[43 replies] Last: Thank you i appreciate it (by FanOfThe49ers)
|
by Shruthi LS
python-cpp for loop
|
|
[3 replies] Last: Consecutive elements? In that case: #include <iostream> int main() {... (by keskiverto)
|
by MaxGreen
ascending&descending order
|
|
[3 replies] Last: @salem c - thanks for your advice, I will keep in mind. @seeplus I a... (by MaxGreen)
|
by esteef
HW help beginners
|
|
[4 replies] Last: Yes andy you are correct i will do that from now. Seeplus thank you ... (by esteef)
|
by Emil Enchev
This bad, bad printf()
|
|
[4 replies] Last: May be you are right coder777. Its cpp.sh site problem. They'll fix it... (by Emil Enchev)
|
by djcampbell
Invalid operands for binary expressions error
|
|
[5 replies] Last: This is the tutorial https://raytracing.github.io/books/RayTracingIn... (by djcampbell)
|
Cannot convert '__gnu_cxx::_alloc_traits<std::allocator<std::_cxxll:basic_string<char> |
|
[3 replies] Last: @FanOfThe49ers, This is the same bunch of problems as your previous t... (by deleted account xyzzy)
|
How to replace specific character within an array with another character from an array? |
|
[3 replies] Last: string s = "blah blah # moo ? words"; size_t here = s.find("#"); s.r... (by jonnin)
|
by rovert456
Returning functions
|
|
[8 replies] Last: good catch on the int/double. "a way around this would be to create ... (by jonnin)
|
How does std::array know it's size? |
|
[7 replies] Last: address_view(std::cout, &a1, sizeof(a1)); That would give an erron... (by deleted account xyzzy)
|
by nathamael404
Floor and ceil using if then
|
|
[3 replies] Last: thankyou salem c and seeplus,i got itand my code has been succesfull (by nathamael404)
|
by Jeff Viray
Simple charade game
|
|
[1 reply] : You need to store your words, together with its category. You need som... (by nuderobmonkey)
|
by soulworld05
confusing with argument
|
|
[3 replies] Last: I'd recommend taking a look at a tutorial about functions, for example... (by MikeyBoy)
|
by soulworld05
the ( ) and no integer
|
|
[12 replies] Last: int print(int x , int y) // it is int because it carry x and y over. ... (by MikeyBoy)
|