Corning Community College CSCS2320 Data Structures Assignments, Documents, Information, and Projects ======Projects====== | [[/haas/fall2021/data/projects/ntr0|ntr0]] (due 20210825) | | [[/haas/fall2021/data/projects/pctX|pct1]] (bonus; due 20210819) | | [[/haas/fall2021/common/projects/wcp|wcp1]] (due 20210818) | | ael0 (due 20210901) | | [[/haas/fall2021/data/projects/pctX|pct2]] (due 20210825) | | [[/haas/fall2021/common/projects/wcp|wcp2]] (due 20210825) | | sln0 (due 20210901) | | [[/haas/fall2021/data/projects/pctX|pct3]] (bonus; due 20210901) | | [[/haas/fall2021/common/projects/wcp|wcp3]] (due 20210901) | | [[/haas/fall2021/data/projects/sln1|sln1]] (due 20210908) | | [[/haas/fall2021/data/projects/pctX|pct4]] (due 20210908) | | [[/haas/fall2021/common/projects/wcp|wcp4]] (due 20210908) | | [[/haas/fall2021/data/projects/sll0|sll0]] (due 20210915) | | [[/haas/fall2021/data/projects/gfoX|gfo0]] (due 20210915) | | [[/haas/fall2021/data/projects/pctX|pct5]] (bonus; due 20210915) | | [[/haas/fall2021/common/projects/wcp|wcp5]] (due 20210915) | | [[/haas/fall2021/data/projects/sll1|sll1]] (due 20210922) | | [[/haas/fall2021/data/projects/pctX|pct6]] (due 20210922) | | [[/haas/fall2021/common/projects/wcp|wcp6]] (due 20210922) | | [[/haas/fall2021/data/projects/sll2|sll2]] (due 20210929) | | [[/haas/fall2021/data/projects/pctX|pct7]] (bonus; due 20210929) | | [[/haas/fall2021/common/projects/wcp|wcp7]] (due 20210929) | | [[/haas/fall2021/data/projects/sll3|sll3]] (due 20211006) | | [[/haas/fall2021/data/projects/sll4|sll4]] (due 20211006) | | [[/haas/fall2021/data/projects/pctX|pct8]] (due 20211006) | | [[/haas/fall2021/common/projects/wcp|wcp8]] (due 20211006) | | [[/haas/fall2021/data/projects/dln0|dln0]] (due 20211020) | | [[/haas/fall2021/data/projects/dll0|dll0]] (due 20211020) | | [[/haas/fall2021/data/projects/pctX|pct9]] (bonus; due 20211020) | | [[/haas/fall2021/data/projects/pctX|bwp1]] (bonus; due 20211020) | | [[/haas/fall2021/common/projects/wcp|wcp9]] (due 20211020) | | [[/haas/fall2021/data/projects/dll1|dll1]] (due 20211027) | | [[/haas/fall2021/data/projects/gfoX|gfo1]] (due 20211027) | | [[/haas/fall2021/data/projects/pctX|pctA]] (due 20211027) | | [[/haas/fall2021/common/projects/wcp|wcpA]] (due 20211027) | | [[/haas/fall2021/data/projects/dll2|dll2]] (due 20211103) | | [[/haas/fall2021/data/projects/dls0|dls0]] (due 20211103) | | [[/haas/fall2021/data/projects/pctX|pctB]] (bonus; due 20211103) | | [[/haas/fall2021/common/projects/wcp|wcpB]] (due 20211103) | | [[/haas/fall2021/data/projects/dlq0|dlq0]] (due 20211110) | | [[/haas/fall2021/data/projects/pctX|pctC]] (due 20211110) | | [[/haas/fall2021/common/projects/wcp|wcpC]] (due 20211110) | | [[/haas/fall2021/data/projects/gfo2|gfo2]] (due 20211117) | | [[/haas/fall2021/data/projects/pctX|pctD]] (bonus; due 20211117) | | [[/haas/fall2021/data/projects/pctX|pctE]] (bonus; due 20211201) | | [[/haas/fall2021/data/projects/pctX|bwp2]] (bonus; due 20211201) | | @lightgreen:[[/haas/fall2021/data/eoce/readme|EoCE]] (due 20211209) | ======Class Stats====== * [[/haas/fall2021/data/projects/status|status]] ======Week 1====== * Welcome! * be sure to look over the syllabus, and start on the **ael0** project (use 'grabit' on lab46, or ask on discord) * Review, ask questions on C and pointers. * try writing sample code employing various concepts * pointers are a fixed size, regardless of data type * why? MEMORY ADDRESSING * on lab46 (running on a 64-bit OS/system), memory addresses are 64-bits (64/8 = 8 bytes) * so all pointers (whether char, int, float, etc.) will be 8 bytes in size on this system. * on other systems, notably 16-bit and 32-bit systems (especially late-era hardware that might have incorporated tweaks to support more memory than is typically accessible by the default machine word size), memory address sizes can vary. * takeaway: for code portability, do not assume 8 byte memory addresses. **ALWAYS** use **sizeof()** to maximize portability.