User Tools

Site Tools


haas:fall2020:data:projects

Table of Contents

Corning Community College

CSCS2320 Data Structures

Assignments, Documents, Information, and Projects

Projects

ntr0 (due 20200826)
pct1 (bonus; due 20200819)
wcp1 (due 20200819)
ael0 (due 20200826)
pct2 (due 20200826)
wcp2 (due 20200826)
sln0 (due 20200902)
pct3 (bonus; due 20200902)
wcp3 (due 20200902)
sln1 (due 20200909)
pct4 (bonus; due 20200909)
wcp4 (due 20200909)
sll0 (due 20200916)
pct5 (bonus; due 20200916)
wcp5 (due 20200916)
sll1 (due 20200923)
pct6 (due 20200923)
wcp6 (due 20200923)
sll2 (due 20200930)
pct7 (bonus; due 20200930)
wcp7 (due 20200930)
sll3 (due 20201007)
sll4 (due 20201007)
pct8 (due 20201007)
wcp8 (due 20201007)
dln0 (due 20201014)
dll0 (due 20201014)
gfo0 (due 20201014)
pct9 (bonus; due 20201014)
wcp9 (due 20201014)
dll1 (due 20201021)
pctA (due 20201021)
wcpA (due 20201021)
dll2 (due 20201028)
dls0 (due 20201028)
pctB (bonus; due 20201028)
wcpB (due 20201028)
dlq0 (due 20201104)
pctC (due 20201104)
wcpC (due 20201104)
pctD (bonus; due 20201111)
wcpD (bonus; due 20201111)
pctE (bonus; due 20201118)
wcpE (bonus; due 20201118)
eoce (due 20201125)

Class Stats

  • status (coming at some point)

Week 1

  • Welcome!
  • Went over the syllabus, formally introduced ael0 project.
  • Started reviewing C by talking about pointers.
    • we wrote some sample code
    • 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.
haas/fall2020/data/projects.txt · Last modified: 2020/11/15 13:57 by wedge