Forum: C Oct 18th, 2008 |
| Replies: 4 Views: 603 First you write code in some text editor. It doesn't matter what editor, it could even be notepad.
Then you have to compile that code.
Compilation refers to the processing of source code files (.c,... |
Forum: C Oct 14th, 2008 |
| Replies: 7 Views: 688 The first one is "passing arguments to pointers". In that way, you can change original variable!
Second one is "passing arguments as references".
You cannot do that in C, C always passes arguments... |