ee 200 lecture 5 arrays
play

EE 200 Lecture 5: Arrays Steven Bell 18 September 2019 Indexing - PowerPoint PPT Presentation

EE 200 Lecture 5: Arrays Steven Bell 18 September 2019 Indexing arrays int grape[10] 0 1 2 3 4 5 6 7 8 9 10 11 int* raisin = grape; grape[0] raisin[1] grape[10] int i = 1; *(grape + 1) i[grape]; *(raisin + 1) sizeof The quiz didn't


  1. EE 200 Lecture 5: Arrays Steven Bell 18 September 2019

  2. Indexing arrays int grape[10] 0 1 2 3 4 5 6 7 8 9 10 11 int* raisin = grape; grape[0] raisin[1] grape[10] int i = 1; *(grape + 1) i[grape]; *(raisin + 1)

  3. sizeof The quiz didn't cover all the cases: char pear[100]; int howBig(char arr[]) { char* pear_p; return sizeof arr; } sizeof pear[1] howBig(pear[1]) sizeof pear howBig(pear) sizeof *pear_p howBig(pear_p) sizeof pear_p

  4. sizeof The quiz didn't cover all the cases: GCC will warn you about this: char pear[100]; int howBig(char arr[]) { char* pear_p; return sizeof arr; } sizeof pear[1] howBig(pear[1]) sizeof pear howBig(pear) sizeof *pear_p howBig(pear_p) sizeof pear_p

  5. sizeof an array Unlike Python, MATLAB, Java, etc., C doesn't track how big its arrays are. So once you're outside the unit where it was declared, you have to track the size yourself.

  6. Dangling pointers Any pointer whose memory has been deallocated Why is this bad? A) You're reading data that might have changed B) You're writing to memory that might be used for something else C) The behavior is unpredictable D) All of the above

  7. Dangling pointers For now, you can avoid dangling pointers by never returning a pointer to a local variable. Once we can dynamically allocate memory, it will get more complex.

  8. O ffi ce hours I'd like to check in with everyone at some point in the next two weeks I'll send out a spreadsheet; sign up for a time.

  9. Grading Classwork 1 grades will be published today Don't worry about build failures for Classwork 3; we're fi xing the autograder.

  10. Make Use "." to redo an action Use visual mode to make edits to many lines at once: Ctrl+v navigate with h/j/k/l Shift-i make edit Escape now you're back in normal mode Use :s/one/two/g for quick fi nd-and-replace

  11. Make Make is a tool for automating compilation

  12. Homework 5 is hosted on Github Homework 3 regrades are due by Monday 9/23 at 4:30pm Homework 4 due Monday 9/23 at 4:30pm Homework 5 due Wednesday 9/25 at 4:30pm

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend