Search Results

1
vote
6answers
3k views

How to run C/C++ in a Unix console/Mac terminal?

I know it, forgets it and relearn it again. Time to write it down. …
5
votes
5answers
2k views

What is the arrow operator (->) synonym for in C++?

I know it, forgets it and relearn it again. Time to write it down. …
0
votes

How to run C/C++ in a Unix console/Mac terminal?

./[name of the program] For example ./a.out …
0
votes

What is the arrow operator (->) synonym for in C++?

The C++-language defines the arrow operator (->) as a synonym for dereferencing a pointer and then use the .-operator on that address. For example: If you have a an object,'anObject …