Some questions , simple ones

hey guys

so I've been learning from this book , but I wanted to ask , should I skip c++ in mac and other operators ? are they going to help me with anything ? because I'm using windows.

also is the functions definition and the function body the same thing ?
you can skip such advance operators since you will not mainly use it in basics like:

| & << >> ^ <<= >>= |= &= ^=


also is the functions definition and the function body the same thing ?


function definition is "the whole function"
1
2
3
4
int main( )
{
    // <-- beetween '{' and '}' is considered to be the body
}
Last edited on
Topic archived. No new replies allowed.