Algorithms  Problem: Write pseudocode for a program that keeps asking the user to input integers until the user enters zero, and then determines and outputs.

Slides:



Advertisements
Similar presentations
Chapter 11 Introduction to Programming in C
Advertisements

Introduction to C Programming
 2005 Pearson Education, Inc. All rights reserved Introduction.
Introduction to C Creating your first C program. Writing C Programs  The programmer uses a text editor to create or modify files containing C code. 
 C++ programming facilitates a disciplined approach to program design. ◦ If you learn the correct way, you will be spared a lot of work and frustration.
CSE1301 Computer Programming Lecture 4: C Primitives I.
CMSC 104, Version 9/011 Introduction to C Topics Compilation Using the gcc Compiler The Anatomy of a C Program 104 C Programming Standards and Indentation.
Introduction to C Topics Compilation Using the gcc Compiler
Introduction to C. A Brief History Created by Dennis Ritchie at AT&T Labs in 1972 Originally created to design and support the Unix operating system.
CHAPTER 1: INTORDUCTION TO C LANGUAGE
Chapter 3: Introduction to C Programming Language C development environment A simple program example Characters and tokens Structure of a C program –comment.
Copyright 2003 Scott/Jones Publishing Brief Version of Starting Out with C++, 4th Edition Chapter 1 Introduction to Computers and Programming.
CMSC 104, Version 8/061L18Functions1.ppt Functions, Part 1 of 4 Topics Using Predefined Functions Programmer-Defined Functions Using Input Parameters Function.
Introduction to C/C++ Programming This lecture has major focus on programming, compilation.
By: Mr. Baha Hanene Chapter 3. Learning Outcomes We will cover the learning outcome 02 in this chapter i.e. Use basic data-types and input / output in.
Introduction to C Programming. A Brief History u Created by Dennis Ritchie at AT&T Labs in 1972 u Originally created to design and support the Unix operating.
Goals of Course Introduction to the programming language C Learn how to program Learn ‘good’ programming practices.
IPC144 Introduction to Programming Using C Week 1 – Lesson 2
Theory is when you know something, but it doesn't work. Practice is when something works, but you don't know why. Programmers combine theory and practice:
Creating your first C++ program
Programming With C.
History of C 1950 – FORTRAN (Formula Translator) 1959 – COBOL (Common Business Oriented Language) 1971 – Pascal Between Ada.
/* Documentations */ Pre process / Linking statements Global declarations; main( ) { Local Declarations; Program statements / Executable statements; }
CMSC 104, Version 9/011 Introduction to C Topics Compilation Using the gcc Compiler The Anatomy of a C Program 104 C Programming Standards and Indentation.
Programming Fundamentals. Today’s Lecture Why do we need Object Oriented Language C++ and C Basics of a typical C++ Environment Basic Program Construction.
COMPUTER PROGRAMMING. A Typical C++ Environment Phases of C++ Programs: 1- Edit 2- Preprocess 3- Compile 4- Link 5- Load 6- Execute Loader Primary Memory.
1 Programming in C Hello World! Soon I will control the world! Soon I will control the world!
Chapter 0 Getting Started. Objectives Understand the basic structure of a C++ program including: – Comments – Preprocessor instructions – Main function.
1 A simple C++ program // ======================================================= // File:helloworld.cpp // Author:Vana Doufexi // Date:1/4/2006 // Description:Displays.
Introduction to C CMSC 104, Section 4 Richard Chang 1.
Introduction to C 2008/09/29: Lecture 7 CMSC 104, Section 0101 John Y. Park 1.
CMSC 104, Lecture 111 Introduction to C Topics l Compilation l Using the gcc Compiler l The Anatomy of a C Program l 104 C Programming Standards and Indentation.
CMSC 1041 Introduction to C Creating your first C program.
Agenda Computer Languages How to Write a Simple C Program
Anatomy of the simplest C Program Sen Zhang SUNY Oneonta Oneonta, NEW YORK © 2004
First Compilation Rudra Dutta CSC Spring 2007, Section 001.
CMPE13Cyrus Bazeghi 1 Chapter 11 Introduction to Programming in C.
 2007 Pearson Education, Inc. All rights reserved. A Simple C Program 1 /* ************************************************* *** Program: hello_world.
1 UMBC CMSC 104, Section Fall 2002 Functions, Part 1 of 3 Topics Top-down Design The Function Concept Using Predefined Functions Programmer-Defined.
Principles of Programming CSEB134 : BS/ CHAPTER Fundamentals of the C Programming Language.
Introduction to C Programming
1 Types of Programming Language (1) Three types of programming languages 1.Machine languages Strings of numbers giving machine specific instructions Example:
CMSC 104, Section 301, Fall Lecture 18, 11/11/02 Functions, Part 1 of 3 Topics Using Predefined Functions Programmer-Defined Functions Using Input.
L071 Introduction to C Topics Compilation Using the gcc Compiler The Anatomy of a C Program Reading Sections
12/06/ :04:41 CSC Alliance — 1 Kimera Richard Phone: INSTITUTE OF COMPUTER SCIENCE DEPARTMENT.
Chapter 1 slides1 What is C? A high-level language that is extremely useful for engineering computations. A computer language that has endured for almost.
INTRODUCTION TO PROGRAMING System Development Mansoura October 2015.
BIL 104E Introduction to Scientific and Engineering Computing Lecture 1.
1 Lecture 2 - Introduction to C Programming Outline 2.1Introduction 2.2A Simple C Program: Printing a Line of Text 2.3Another Simple C Program: Adding.
Introduction to C Topics Compilation Using the gcc Compiler
UMBC CMSC 104 – Section 01, Fall 2016
Computer Science 210 Computer Organization
ANNOUNCEMENT The missed lecture will be made up this Monday evening in the Tech PC classroom (MG51). A tentative time interval is 6:30-8:00. The exact.
CSC201: Computer Programming
Introduction to C Language
C Programming Hardik H. Maheta.
Chapter 2, Part I Introduction to C Programming
Algorithms Problem: Write pseudocode for a program that keeps asking the user to input integers until the user enters zero, and then determines and outputs.
Introduction to C Topics Compilation Using the gcc Compiler
Introduction to C Topics Compilation Using the gcc Compiler
IPC144 Introduction to Programming Using C Week 1 – Lesson 2
Chapter 11 Introduction to Programming in C
Govt. Polytechnic,Dhangar
Introduction to C Topics Compilation Using the gcc Compiler
Creating your first C program
Programming Fundamentals Lecture #3 Overview of Computer Programming
2008/09/29: Lecture 7 CMSC 104, Section 0101 John Y. Park
Introduction to C Topics Compilation Using the gcc Compiler
Introduction to C Topics Compilation Using the gcc Compiler
Introduction to C Programming
Presentation transcript:

Algorithms  Problem: Write pseudocode for a program that keeps asking the user to input integers until the user enters zero, and then determines and outputs the smallest integer. (Hint: Think about keeping a variable that stores the minimum value. Then you can compare the minimum to each value read in. If the number you read in is smaller than the minimum, it should become the new minimum.)  Sample input/output for program is listed below. Your program's output is in bold. Please input an integer, 0 to end: -2 Please input an integer, 0 to end: 10 Please input an integer, 0 to end: -8 Please input an integer, 0 to end: 17 Please input an integer, 0 to end: 0 The smallest integer entered was -8.

What is the output of the program? = 0 While ( = +2 Display "Now Number is " EndWhile Display “We are done!”

Introduction to C Topics  Compilation  Using the gcc Compiler  The Anatomy of a C Program  104 C Programming Standards and Indentation Styles Reading  Sections Chapter 1, 2.1

Writing C Programs  A programmer uses a text editor to create or modify files containing C code.  Code is also known as source code.  A file containing source code is called a source file.  After a C source file has been created, the programmer must invoke the C compiler before the program can be executed (run).

Compiler  The five stages of a compiler combine to translate a high level language to a low level language, generally closer to that of the target computer.  Each stage, or sub-process, fulfills a single task and has one or more classic techniques for implementation.

ComponentPurpose Lexical Analyzer Analyzes the Source Code Removes "white space" and comments Formats it for easy access (creates tokens) Tags language elements with type information Begins to fill in information in the SYMBOL TABLE ** Syntactic Analyzer Analyzes the Tokenized Code for structure Amalgamates symbols into syntactic groups Tags groups with type information Semantic Analyzer Analyzes the Parsed Code for meaning Fills in assumed or missing information Tags groups with meaning information Code Generator Linearizes the Qualified Code and produces the equivalent Object Code Optimizer Examines the Object Code to determine whether there are more efficient means of execution The Symbol Table is the data structure that all elements of the compiler use to collect and share information about symbols and groups of symbols in the program being translated

Using the C Compiler at UMBC  Invoking the compiler is system dependent. At UMBC, we have two C compilers available, cc and gcc. For this class, we will use the gcc compiler as it is the compiler available on the Linux system.

Invoking the gcc Compiler At the prompt, type gcc -ansi -Wall pgm.c where pgm.c is the C program source file.  -ansi is a compiler option that tells the compiler to adhere to the ANSI C standard.  -Wall is an option to turn on all compiler warnings (best for new programmers).

The Result : a.out  If there are no errors in pgm.c, this command produces an executable file, which is one that can be executed (run).  The gcc compiler names the executable file a.out  To execute the program, at the prompt, type a.out  Although we call this process “compiling a program,” what actually happens is more complicated.

3 Stages of Compilation Stage 1: Preprocessing Performed by a program called the preprocessor Modifies the source code (in RAM) according to preprocessor directives (preprocessor commands) embedded in the source code Strips comments and whitespace from the code The source code as stored on disk is not modified.

3 Stages of Compilation (con’t) Stage 2: Compilation o Performed by a program called the compiler o Translates the preprocessor-modified source code into object code (machine code) o Checks for syntax errors and warnings o Saves the object code to a disk file, if instructed to do so (we will not do this). o If any compiler errors are received, no object code file will be generated. o An object code file will be generated if only warnings, not errors, are received.

3 Stages of Compilation (con’t) Stage 3: Linking o Combines the program object code with other object code to produce the executable file. o The other object code can come from the Run- Time Library, other libraries, or object files that you have created. o Saves the executable code to a disk file. On the Linux system, that file is called a.out. o If any linker errors are received, no executable file will be generated.

Program Development Using gcc Source File pgm.c Program Object Code File pgm.o Executable File a.out Preprocessor Modified Source Code in RAM Compiler Linker Other Object Code Files (if any) Editor

A Simple C Program /* Filename: hello.c Author: Brian Kernighan & Dennis Ritchie Date written: ?/?/1978 Description: This program prints the greeting “Hello, World!” */ #include int main ( ) { printf (“Hello, World!\n”) ; return 0 ; } gcc -ansi -Wall pgm.c

Anatomy of a C Program program header comment preprocessor directives (if any) #include int main ( ) { statement(s) return 0 ; }

Program Header Comment  A comment is descriptive text used to help a reader of the program understand its content.  All comments must begin with the characters /* and end with the characters */  These are called comment delimiters  The program header comment always comes first.  Look at the class web page for the required contents of our header comment.

A Simple C Program /* Filename: hello.c Author: Brian Kernighan & Dennis Ritchie Date written: ?/?/1978 Description: This program prints the greeting “Hello, World!” */ #include int main ( ) { printf (“Hello, World!\n”) ; return 0 ; } gcc -ansi -Wall pgm.c

Preprocessor Directives  Lines that begin with a # in column 1 are called preprocessor directives (commands).  Example: the #include directive causes the preprocessor to include a copy of the standard input/output header file stdio.h at this point in the code.  This header file was included because it contains information about the printf ( ) function that is used in this program.

A Simple C Program /* Filename: hello.c Author: Brian Kernighan & Dennis Ritchie Date written: ?/?/1978 Description: This program prints the greeting “Hello, World!” */ #include int main ( ) { printf (“Hello, World!\n”) ; return 0 ; } gcc -ansi -Wall pgm.c

int main ( )  Every program must have a function called main. This is where program execution begins.  main() is placed in the source code file as the first function for readability.  The reserved word “int” indicates that main() returns an integer value.  The parentheses following the reserved word “main” indicate that it is a function.

The Function Body  A left brace (curly bracket) -- { -- begins the body of every function. A corresponding right brace -- } -- ends the function body.  The style is to place these braces on separate lines in column 1 and to indent the entire function body 3 to 5 spaces.

A Simple C Program /* Filename: hello.c Author: Brian Kernighan & Dennis Ritchie Date written: ?/?/1978 Description: This program prints the greeting “Hello, World!” */ #include int main ( ) { printf (“Hello, World!\n”) ; return 0 ; } gcc -ansi -Wall pgm.c

printf (“Hello, World!\n”) ;  This line is a C statement.  It is a call to the function printf ( ) with a single argument (parameter), namely the string “ Hello, World!\n ”.  Even though a string may contain many characters, the string itself should be thought of as a single quantity.  Notice that this line ends with a semicolon. All statements in C end with a semicolon.

A Simple C Program /* Filename: hello.c Author: Brian Kernighan & Dennis Ritchie Date written: ?/?/1978 Description: This program prints the greeting “Hello, World!” */ #include int main ( ) { printf (“Hello, World!\n”) ; return 0 ; } gcc -ansi -Wall pgm.c

return 0 ;  Because function main() returns an integer value, there must be a statement that indicates what this value is.  The statement return 0 ; indicates that main() returns a value of zero to the operating system.  A value of 0 indicates that the program successfully terminated execution.  Do not worry about this concept now. Just remember to use the statement.

Another C Program /***************************************** ** File: proj1.c ** Author: Joe Student ** Date: 9/15/01 ** Section: 0301 ** ** ** This program prompts the user for two integer values then displays ** their product. ** ***********************************************/ gcc -ansi -Wall proj1.c

Another C Program (con’t) #include int main() { int value1, value2, product ; printf(“Enter two integer values: “) ; scanf(“%d%d”, &value1, &value2) ; product = value1 * value2 ; printf(“Product = %d\n”, product) ; return 0 ; } gcc -ansi -Wall pgm.c

Good Programming Practices  C programming standards and indentation styles are available on the 104 course homepage.  You are expected to conform to these standards for all programming projects in this class and in CMSC 201. (This will be part of your grade for each project!)  The program just shown conforms to these standards, but is uncommented (later).  Subsequent lectures will include more “Good Programming Practices” slides.