Uploader Comments (macheads101)
All Comments (17)
-
just wondering, but can you do python tutorials?
-
You explain things amazingly!! You're the best!
-
this is a good tutorial but for the record "integer", "initial" and i forgot the other ones
-
Important note: you actually should include the string header in order to use std::string in the proper, standard-conformant way (i.e., so that it works on all the compilers that follow the C++ standard).
-
Keyword "double" stands for double-precision floating-point number (as opposed to a single-precision one, which is just called "float"). While the C++ standard doesn't specify how much is double-precision, your particular hardware (and, in general, the AMD/Intel-based platforms) follows the IEEE-754 standard, where double uses 64 bits, whereas single-precision "float" uses 32 bits. For more, see youtu.be/ClT4B7bpau4. A "decimal" is usually associated with fixed-point numbers, different thing.
-
it's about the content buddy not the length. and we can pause anytime lol
thanks for the video :)
is this differrent from creating ios apps?
jsne10 4 months ago
@jsne10 These tutorials are on how to create C++ programs. iOS applications are written in Objective-C, which is somewhat different than C++.
macheads101 4 months ago
my xcode says that "cout", "cin" and " endl" are undeclared and doesnt allows me to run the program.... what do i need to do?
DrumLifeForever 7 months ago
@DrumLifeForever did you remember to say "using namespace std;"
macheads101 7 months ago
@macheads101 yes and it wont recognize that either ;
it says : expected `=``` `-` `asm` ot `atribute`before `namespace`
DrumLifeForever 7 months ago
@DrumLifeForever If you send me the code in a personal message (i.e the entire main.cpp file), I can help you fix it.
macheads101 7 months ago
@DrumLifeForever did you include iostream?
macheads101 7 months ago