Read: D&D, through 348 (section 5.8)
Exercises due Thursday, March 24:
finish lab and Assignment 2!
You can actually run a unix shell from within xemacs. Just type
esc-x shell
and you will get a unix shell. All commands that you would normally
execute on the command line you can execute from within this shell. When
I run xemacs in this fashion, I normally split the screen into two by doing:
ctrl-x 2
You can edit a file in one window and run a shell in the other.
| * | & | |
| In a declaration | comes after the type | comes after the type |
| declares a pointer | declares a ref(alias) | |
| int *intPtr; | must be initialized
int m; int &aka_m = m; |
|
| As an operator | comes before its operand | comes before its operand |
| dereferences a pointer
*intPtr |
returns the addr of op
*(&m) == m |