- 04:54, 28 February 2012 (diff | hist) . . (+23) . . Lecture 15 ECE264F12Lu
- 04:53, 28 February 2012 (diff | hist) . . (+1,658) . . N Lecture 15 ECE264F12Lu (New page: On IPA 1-2 If you use #ifndef, you must use #define otherwise, you defeat the purpose of #ifndef February 28 Each func should only do ONE thing Points will be taken if your program has ...)
- 07:00, 13 February 2012 (diff | hist) . . (+128) . . 2012 Spring ECE 264 Lu
- 06:58, 13 February 2012 (diff | hist) . . (+81) . . 2012 Spring ECE 264 Lu
- 04:19, 7 February 2012 (diff | hist) . . (+2,207) . . N Lecture 9 (New page: int * arr; This will initialize a pointer without a value. int * arr = NULL; This is a better way to initialize the same pointer. You can then use it to validate the pointer with ...)
- 03:52, 7 February 2012 (diff | hist) . . (+2,773) . . N Lecture 8 (New page: Feb. 2 Quiz void f1(int * a, int * b)<br>{<br> int * c;<br> c = a;<br> a = b;<br> b = a;<br>} int main(int argc, char * argv[])<br>{<br> int a = 12;<br> int b = -9;<br> printf(“%...)
- 03:51, 7 February 2012 (diff | hist) . . (+135) . . Lecture 7
- 03:50, 7 February 2012 (diff | hist) . . (+2,451) . . N Lecture 7 (New page: int * a; a’s value is an address At that address, stores an integer (integer pointer) c = * a; if it’s * a on the right hand side it means to go to that variable’s address to retrie...)