I have learned:
New Terminal commands
Logical operators
Main purposes of
-iostream;
-using namespace;
-int main;
-return 0.
Lets start from new terminal command which is alias
'alias' is one of the common terminal operator which is used for giving nickname. If we have to use long code frequenty, we can give nickname to this code with alias.For example: We always use
g++ mani.cpp -o programm && ./programmfor run our programm. In this situation, we can usealias run='g++ mani.cpp -o programm && ./programm'instead of typing long code and we do this operation just with typingrun.
iostream, using namespace, int main and return 0
-
iostreamis input/otput stream; -
using namespacemakes orders disposable which are written frequantly; -
int mainis enterance point of programm; -
return 0refers successful finishing;
Logical operators
-
AND-&& -
OR-|| -
NOT-!
Top comments (0)