COS 217: Introduction to Programming Systems

Similar documents
COS 217: Introduction to Programming Systems. Goals for Todayʼs Class. Introductions

EE 209: Programming Structures for Electrical Engineering

COS 217: Introduction to Programming Systems!

COS 217: Introduction to Programming Systems!

EE 209: Programming Structures for Electrical Engineering. (Many Slides Borrowed from Princeton COS 217)

Fall, $ cat welcome.c #include <stdio.h>

Princeton University Computer Science 217: Introduction to Programming Systems. Agenda. COS 217: Introduction to Programming Systems.

CSC 2400: Computing Systems!

COS 217: Introduction to Programming Systems

CSC 2400: Computing Systems

Programming in C and C++

Introduction to Programming Systems

Syllabus of ENPM 691: Secure Programming in C

EL2310 Scientific Programming

Two s Complement Review. Two s Complement Review. Agenda. Agenda 6/21/2011

Welcome to... CS113: Introduction to C

EL2310 Scientific Programming

Class Information ANNOUCEMENTS

Motivation was to facilitate development of systems software, especially OS development.

Motivation was to facilitate development of systems software, especially OS development.

Laboratory 2: Programming Basics and Variables. Lecture notes: 1. A quick review of hello_comment.c 2. Some useful information

CS 241 Data Organization. August 21, 2018

Princeton University Computer Science 217: Introduction to Programming Systems The Design of C

Debugging (Part 1) The material for this lecture is drawn, in part, from The Practice of Programming (Kernighan & Pike) Chapter 5

Programming in C and C++

Programming in C. What is C?... What is C?

PRINCIPLES OF OPERATING SYSTEMS

Structure of this course. C and C++ Past Exam Questions. Text books

Programming in C UVic SEng 265

Software Project. Lecturers: Ran Caneti, Gideon Dror Teaching assistants: Nathan Manor, Ben Riva

Topic 6: A Quick Intro To C

CS 261 Fall C Introduction. Variables, Memory Model, Pointers, and Debugging. Mike Lam, Professor

Programming in C. What is C?... What is C?

C Compilation Model. Comp-206 : Introduction to Software Systems Lecture 9. Alexandre Denault Computer Science McGill University Fall 2006

(heavily based on last year s notes (Andrew Moore) with thanks to Alastair R. Beresford. 1. Types Variables Expressions & Statements 2/23

CSE 303 Lecture 8. Intro to C programming

Introduction to C. Sean Ogden. Cornell CS 4411, August 30, Geared toward programmers

Lec 3. Compilers, Debugging, Hello World, and Variables

Introduction to C. Ayush Dubey. Cornell CS 4411, August 31, Geared toward programmers

Princeton University Computer Science 217: Introduction to Programming Systems The C Programming Language Part 1

COMP1917: Computing 1 1. Introduction

Introduction to Computer Systems

CS 61C: Great Ideas in Computer Architecture Introduction to C

C Introduction. Comparison w/ Java, Memory Model, and Pointers

Chris Riesbeck, Fall Introduction to Computer Systems

Topic 6: A Quick Intro To C. Reading. "goto Considered Harmful" History

CS 110 Computer Architecture. Lecture 2: Introduction to C, Part I. Instructor: Sören Schwertfeger.

Presented By : Gaurav Juneja

1. Introduction. Course Web Site. COMP1917: Computing 1. Textbook. Occupational Health and Safety (OHS)

CS 0449 Intro to Systems Software Fall Term: 2181

2/12/17. Goals of this Lecture. Historical context Princeton University Computer Science 217: Introduction to Programming Systems

CS 110 Computer Architecture. Lecture 2: Introduction to C, Part I. Instructor: Sören Schwertfeger.

EMBEDDED SYSTEMS PROGRAMMING Language Basics

6.S096 Lecture 1 Introduction to C

CS 126 Lecture S1: Introduction to Java

CMSC 246 Systems Programming

Introduction to C. Zhiyuan Teo. Cornell CS 4411, August 26, Geared toward programmers

CSC231 C Tutorial Fall 2018 Introduction to C

C - Basics, Bitwise Operator. Zhaoguo Wang

Continued from previous lecture

CS 253: Intro to Systems Programming 1/21

introduction week 1 Ritsumeikan University College of Information Science and Engineering Ian Piumarta 1 / 20 imperative programming about the course

CS 326 Operating Systems C Programming. Greg Benson Department of Computer Science University of San Francisco

Introduction to Computer Systems

Introduction to Computer Systems

Programming Languages: Part 1. Robert M. Dondero, Ph.D. Princeton University

EMBEDDED SYSTEMS PROGRAMMING Language Basics

Lectures 5-6: Introduction to C

Lectures 5-6: Introduction to C

Princeton University COS 333: Advanced Programming Techniques A Subset of C90

COMP1917: Computing 1 1. Introduction

Your Instructor. CSE Content. Notes. Notes. Notes. Summer May 4, 2010

The C language. Introductory course #1

C Programming for Engineers Introduction

CprE 288 Introduction to Embedded Systems Exam 1 Review. 1

CS 241 Data Organization using C

Introduction to C. Robert Escriva. Cornell CS 4411, August 30, Geared toward programmers

COS 333: Advanced Programming Techniques. Robert M. Dondero, Ph.D. Princeton University

Programming Languages Part 1. Copyright 2017 by Robert M. Dondero, Ph.D. Princeton University

gcc hello.c a.out Hello, world gcc -o hello hello.c hello Hello, world

EECS2031 Software Tools

CS 113: Introduction to

Review! Lecture 5 C Memory Management !

TDDB68 Concurrent Programming and Operating Systems. Lecture 2: Introduction to C programming

CS61C : Machine Structures

Goals. Java - An Introduction. Java is Compiled and Interpreted. Architecture Neutral & Portable. Compiled Languages. Introduction to Java

PROGRAMMAZIONE I A.A. 2017/2018

Programming Fundamentals (CS 302 ) Dr. Ihsan Ullah. Lecturer Department of Computer Science & IT University of Balochistan

Saint Louis University. Intro to Linux and C. CSCI 2400/ ECE 3217: Computer Architecture. Instructors: David Ferry

CS 211 Programming I for Engineers

Arrays and Pointers. CSC209: Software Tools and Systems Programming (Winter 2019) Furkan Alaca & Paul Vrbik. University of Toronto Mississauga

Problem Set 1: Unix Commands 1

Introduction to C Programming

Computer Components. Software{ User Programs. Operating System. Hardware

CS 61C: Great Ideas in Computer Architecture Lecture 2: Introduction to C, Part I

The Design of C: A Rational Reconstruction: Part 2

Organization of Programming Languages (CSE452) Why are there so many programming languages? What makes a language successful?

CPSC 213. Introduction to Computer Systems. About the Course. Course Policies. Reading. Introduction. Unit 0

Operating System Labs. Yuanbin Wu

CSCI 136 Data Structures & Advanced Programming. Fall 2018 Instructors Bill Lenhart & Bill Jannen

Transcription:

COS 217: Introduction to Programming Systems 1 Goals for Todayʼs Class Course overview Introductions Course goals Resources Grading Policies Getting started with C C programming language overview 2 1

Introductions Instructor-of-Record Jaswinder Pal Singh jps@cs.princeton.edu Preceptors (in alphabetical order) Robert Dondero, Ph.D. (Lead Preceptor) rdondero@cs.princeton.edu Christopher Moretti, Ph.D. cmoretti@cs.princeton.edu Vivek Pai, Ph.D. (former Instructor-of-Record) vivek@cs.princeton.edu Cole Schlesinger cschlesi@princeton.edu Richard Wang rwthree@princeton.edu 3 Course Goal 1: Programming in the Large Learn how to write large programs Specifically, help you learn how to: Write modular code Hide information Manage resources Handle errors Write portable code Test and debug your code Improve your codeʼs performance (and when to do so) Use tools to support those activities 4 2

Course Goal 2: Under the Hood Learn what happens under the hood of computer systems Specifically, two downward tours C Language Assembly Language language levels tour Application Program Operating System service levels tour Machine Language Hardware Goal 2 supports Goal 1 Reveals many examples of effective abstractions 5 Course Goals: Why C? Q: Why C instead of Java? A: C supports Goal 1 better C is a lower-level language Provides more opportunities to create abstractions C has some flaws The flaws motivate discussions of software engineering principles A: C supports Goal 2 better Facilitates language levels tour C is closely related to assembly language Facilitates service levels tour Linux is written in C 6 3

Course Goals: Why Linux? Q: Why Linux instead of Microsoft Windows? A: Linux is good for education and research Linux is open-source and well-specified A: Linux has good open-source programming tools Linux is a variant of Unix Unix has GNU, a rich open-source programming environment 7 Course Goals: Summary Help you to become a... Power Programmer 8 4

Resources: Lectures and Precepts Lectures Describe concepts at a high level Slides available online at course Web site Precepts Support lectures by describing concepts at a lower level Support your work on assignments Note: Precepts begin on Monday 9 Resources: Website and Listserv Website Access from http://www.cs.princeton.edu Academics Course Schedule COS 217 Listserv cos217@lists.cs.princeton.edu Subscription is required Instructions provided in first precept 10 5

Resources: Books Required book C Programming: A Modern Approach (2 nd Edition), King, 2008. Covers the C programming language and standard libraries Highly recommended books The Practice of Programming, Kernighan and Pike, 1999. Covers programming in the large (Required for COS 333) Computer Systems: A Programmer's Perspective (Second Edition), Bryant and O'Hallaron, 2010. Covers under the hood Some key sections are on electronic reserve First edition is sufficient Programming with GNU Software, Loukides and Oram, 1997. Covers tools All books are on reserve in Engineering Library 11 Resources: Manuals Manuals (for reference only, available online) IA32 Intel Architecture Software Developer's Manual, Volumes 1-3 Tool Interface Standard & Executable and Linking Format Using ʻas,ʼ the GNU Assembler See also Linux man command man is short for manual For more help, type man man 12 6

Resources: Programming Environment Option 1 hats.princeton.edu Friend Center 016 or 017 Computer Linux GNU SSH Your Pgm fez fedora Lab TAs 13 Resources: Programming Environment Option 2 hats.princeton.edu Your PC/Mac/Linux Computer Linux GNU SSH Your Pgm fez fedora 14 7

Resources: Programming Environment Other options Use your own PC/Mac/Linux computer; run GNU tools locally; run your programs locally Use your own PC/Mac/Linux computer; run a non-gnu development environment locally; run your programs locally Etc. Notes Other options cannot be used for some assignments (esp. timing studies) Instructors cannot promise support of other options Strong recommendation: Use Option 1 or 2 for all assignments First precept provides setup instructions 15 Grading Seven programming assignments (50%) Working code Clean, readable, maintainable code On time (penalties for late submission) Final assignment counts double (12.5%) Exams (40%) Midterm (15%) Final (25%) Class participation (10%) Lecture and precept attendance is mandatory Sign-up sheets will be used for both. Attendance is a key part of class participation. 16 8

Programming Assignments Programming assignments 1. A de-comment program 2. A string module 3. A symbol table module 4. IA-32 assembly language programs 5. A buffer overrun attack 6. A heap manager module 7. A Unix shell Key part of the course See course Schedule web page for due dates/times First assignment is available now Advice: Start early to ensure you understand the assignment fully and to allow time for debugging. 17 Why Debugging is Necessary 18 9

Policies Study the course Policies web page Especially the assignment collaboration policies Violation involves trial by Committee on Discipline Typical penalty is suspension from University for 1 academic year Some highlights: Donʼt view anyone elseʼs work during, before, or after the assignment time period Donʼt allow anyone to view your work during, before, or after the assignment time period In your assignment readme file, acknowledge all resources used Ask your preceptor for clarifications if necessary Study the course Policies web page 19 Course Schedule Very generally Weeks Lectures Precepts 1-2 Intro to C (conceptual) Intro to Linux/GNU Intro to C (mechanical) 3-6 Pgmming in the Large Advanced C 6 7 Midterm Exam Recess 8-13 Under the Hood Assembly Language assignments Reading Period Final Exam See course Schedule web page for details 20 10

Any questions before we start? 21 C vs. Java: History We will use Not yet popular; our compiler supports only partially 1960 1970 1972 1978 1989 1999 BCPL B C K&R C ANSI C89 ISO C90 ISO/ANSI C99 LISP Smalltalk C++ Java 22 11

C vs. Java: Design Goals Java design goals Support object-oriented programming Allow same program to be executed on multiple operating systems Support using computer networks Execute code from remote sources securely Adopt the good parts of other languages (esp. C and C++) Implications Good for application-level programming High-level Virtual machine insulates programmer from underlying assembly language, machine language, hardware Portability over efficiency Security over efficiency Security over flexibility 23 C vs. Java: Design Goals C design goals Support structured programming Support development of the Unix OS and Unix tools As Unix became popular, so did C Implications for C Good for system-level programming But often used for application-level programming sometimes inappropriately Low-level Close to assembly language; close to machine language; close to hardware Efficiency over portability Efficiency over security Flexibility over security 24 12

C vs. Java: Design Goals Differences in design goals explain many differences between the languages Cʼs design goal explains many of its eccentricities Weʼll see examples throughout the course 25 C vs. Java: Overview Dennis Ritchie on the nature of C: C has always been a language that never attempts to tie a programmer down. C has always appealed to systems programmers who like the terse, concise manner in which powerful expressions can be coded. C allowed programmers to (while sacrificing portability) have direct access to many machine-level features that would otherwise require the use of assembly language. C is quirky, flawed, and an enormous success. While accidents of history surely helped, it evidently satisfied a need for a system implementation language efficient enough to displace assembly language, yet sufficiently abstract and fluent to describe algorithms and interactions in a wide variety of environments. 26 13

C vs. Java: Overview (cont.) Bad things you can do in C that you canʼt do in Java Shoot yourself in the foot (safety) Shoot others in the foot (security) Ignore wounds (error handling) Dangerous things you must do in C that you donʼt in Java Explicitly manage memory via malloc() and free() Good things you can do in C, but (more or less) must do in Java Program using the object-oriented style Good things you canʼt do in C but can do in Java Write completely portable code 27 C vs. Java: Details Remaining slides provide some details Suggestion: Use for future reference Slides covered briefly now, as time allows 28 14

C vs. Java: Details (cont.) Overall Program Structure Building Hello.java: Java public class Hello { public static void main(string[] args) { System.out.println( "Hello, world"); % javac Hello.java % ls Hello.class Hello.java % hello.c: #include <stdio.h> C int main(void) { printf("hello, world\n"); return 0; % gcc217 hello.c % ls a.out hello.c % Running % java Hello Hello, world % % a.out Hello, world % 29 C vs. Java: Details (cont.) Java C Character type char // 16-bit unicode char /* 8 bits */ Integral types Floating point types Logical type Generic pointer type byte short int long // 8 bits // 16 bits // 32 bits // 64 bits float // 32 bits double // 64 bits boolean // no equivalent void* Constants final int MAX = 1000; (unsigned) char (unsigned) short (unsigned) int (unsigned) long float double long double /* no equivalent */ /* use integral type */ #define MAX 1000 const int MAX = 1000; enum {MAX = 1000; 30 15

C vs. Java: Details (cont.) Java C Arrays Array bound checking Pointer type Record type int [] a = new int [10]; float [][] b = new float [5][20]; int a[10]; float b[5][20]; // run-time check /* no run-time check */ // Object reference is an // implicit pointer class Mine { int x; float y; int *p; struct Mine { int x; float y; 31 C vs. Java: Details (cont.) Java C Strings String concatenation String s1 = "Hello"; String s2 = new String("hello"); s1 + s2 s1 += s2 Logical ops &&,,! &&,,! char *s1 = "Hello"; char s2[6]; strcpy(s2, "hello"); #include <string.h> strcat(s1, s2); Relational ops =,!=, >, <, >=, <= =,!=, >, <, >=, <= Arithmetic ops +, -, *, /, %, unary - +, -, *, /, %, unary - Bitwise ops >>, <<, >>>, &,, ^ >>, <<, &,, ^ Assignment ops =, *=, /=, +=, -=, <<=, >>=, >>>=, =, ^=, =, %= =, *=, /=, +=, -=, <<=, >>=, =, ^=, =, %= 32 16

C vs. Java: Details (cont.) Java C if stmt switch stmt if (i < 0) statement1; else statement2; switch (i) { case 1:... break; case 2:... break; default:... if (i < 0) statement1; else statement2; switch (i) { case 1:... break; case 2:... break; default:... goto stmt // no equivalent goto SomeLabel; 33 C vs. Java: Details (cont.) Java C for stmt while stmt do-while stmt for (int i=0; i<10; i++) statement; while (i < 0) statement; do { statement; while (i < 0) int i; for (i=0; i<10; i++) statement; while (i < 0) statement; do { statement; while (i < 0); continue stmt continue; continue; labeled continue stmt continue SomeLabel; /* no equivalent */ break stmt break; break; labeled break stmt break SomeLabel; /* no equivalent */ 34 17

C vs. Java: Details (cont.) return stmt Compound stmt (alias block) return 5; return; { Java statement1; statement2; return 5; return; { C statement1; statement2; Exceptions throw, try-catch-finally /* no equivalent */ Comments Method / function call /* comment */ // another kind f(x, y, z); someobject.f(x, y, z); SomeClass.f(x, y, z); /* comment */ f(x, y, z); 35 Example C Program #include <stdio.h> #include <stdlib.h> const double KMETERS_PER_MILE = 1.609; int main(void) { int miles; double kmeters; printf("miles: "); if (scanf("%d", &miles)!= 1) { fprintf(stderr, "Error: Expect a number.\n"); exit(exit_failure); kmeters = miles * KMETERS_PER_MILE; printf("%d miles is %f kilometers.\n", miles, kmeters); return 0; 36 18

Summary Course overview Goals Goal 1: Learn programming in the large Goal 2: Look under the hood Goal 2 supports Goal 1 Use of C and Linux supports both goals Learning resources Lectures, precepts, programming environment, course listserv, textbooks Course Web site: access via http://www.cs.princeton.edu 37 Summary Getting started with C C was designed for system programming Differences in design goals of Java and C explain many differences between the languages Knowing C design goals explains many of its eccentricities Knowing Java gives you a head start at learning C C is not object-oriented, but many aspects are similar 38 19

Getting Started Check out course Web site soon Study Policies page First assignment is available Establish a reasonable computing environment soon Instructions given in first precept 39 20