cmsc 104, lecture 111 introduction to c topics l compilation l using the gcc compiler l the anatomy...

28
CMSC 104, Lecture 11 Introduction to C Topics Compilation Using the gcc Compiler The Anatomy of a C Program 104 C Programming Standards and Indentation Styles Reading Sections 1.7 - 1.13, 2.1 - 2.2

Upload: darcy-mcbride

Post on 17-Jan-2016

217 views

Category:

Documents


0 download

TRANSCRIPT

Page 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 104, Lecture 11 1

Introduction to C

Topics

Compilation Using the gcc Compiler The Anatomy of a C Program 104 C Programming Standards and Indentation

Styles

Reading

Sections 1.7 - 1.13, 2.1 - 2.2

Page 2: 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 104, Lecture 11 2

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).

Page 3: 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 104, Lecture 11 3

Using the C Compiler at UMBC

Invoking the compiler is system dependent.

o At UMBC, we have two C compilers available, cc and gcc.

o For this class, we will use the gcc compiler as it is the compiler available on the Linux system. (in fact cc is just a link to gcc)

Page 4: 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 104, Lecture 11 4

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).

Page 5: 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 104, Lecture 11 5

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.

Page 6: 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 104, Lecture 11 6

3 Stages of Compilation

Stage 1: Preprocessing

o Performed by a program called the preprocessor

o Modifies the source code (in RAM) according to preprocessor directives (preprocessor commands) embedded in the source code

o Strips comments and whitespace from the code

o The source code as stored on disk is not modified.

Page 7: 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 104, Lecture 11 7

3 Stages of Compilation (con’t)

Stage 2: Compilationo 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.

Page 8: 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 104, Lecture 11 8

3 Stages of Compilation (con’t)

The Compiler consists of the following sub-systems:

o Parser - checks for errors

o Code Generator - makes the object code

o Optimizer - may change the code to be more efficient

Page 9: 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 104, Lecture 11 9

3 Stages of Compilation (con’t)

Stage 3: Linkingo 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 (a collection of object code with an index so that the linker can find the appropriate code), 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.

Page 10: 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 104, Lecture 11 10

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

Page 11: 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 104, Lecture 11 11

An algorithm for writing code

Write the code using a text editor (eg emacs, vi, pico) Try to compile the code While there are still syntax errors Fix errors Try to compile the code Test the program Fix any semantic errors Compile the code Test the program

Page 12: 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 104, Lecture 11 12

Incremental Approach to Writing Code

Tips about writing code. Write your code in incomplete but working pieces. For instance: For your project

o Don’t write the whole program at once.

o Just write enough that you display the prompt to the user on the screen.

o Get that part working first.

o Next write the part that gets the value from the user, and then just print it out.

Page 13: 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 104, Lecture 11 13

Incremental Approach to Writing Code (continued)

o Get that working.

o Next change the code so that you use the value in a calculation and print out the answer.

o Get that working.

o Make program modifications:� perhaps additional instructions to the user

� a displayed program description for the user

� add more comments.

o Get the final version working.

Page 14: 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 104, Lecture 11 14

A Simple C Program

/* Filename: hello.c Author: Brian Kernighan & Dennis Ritchie Date written: ?/?/1978 Description: This program prints the greeting

“Hello, World!” */

#include <stdio.h>

int main ( ) { printf (“Hello, World!\n”) ;

return 0 ; }

Page 15: 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 104, Lecture 11 15

Anatomy of a C Program

program header comment preprocessor directives (if any) int main ( ) {

statement(s) return 0 ;

}

Page 16: 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 104, Lecture 11 16

The 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 The program header comment should include the

filename, author, date written and a description of the program. Look at the class web page for details of the required contents of our header comment.

Page 17: 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 104, Lecture 11 17

Preprocessor Directive

Lines that begin with a # in column 1 are called preprocessor directives (comands)

Example: the #include <stdio.h> 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’s used in this program.

Page 18: 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 104, Lecture 11 18

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 parenthesis following the reserved word “main” indicate that it is a function.

Page 19: 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 104, Lecture 11 19

The Function Body

A left curly brace -- { -- begins the body of every function. A corresponding right curly brace -- } -- must end the function.

The style is to place these braces on separate lines in column 1 and to indent the entire function body 3 to 5 spaces.

Page 20: 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 104, Lecture 11 20

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.

Page 21: 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 104, Lecture 11 21

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.

Page 22: 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 104, Lecture 11 22

Good Programming Practices

C programming 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!)

These standards include:o Naming conventions

o Use of whitespace

o Use of Braces

o Comments

Page 23: 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 104, Lecture 11 23

Examples of Comment Styles

/* a comment */ /*** another comment ***/ /*****/ /*A comment can be written in this * fashion to set it off from the * surrounding code. */

Page 24: 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 104, Lecture 11 24

More Comments

/*******************************************\ * If you wish, you can put comments * * in a box. This is typically used for * * program header comments and for * * function header comments * \*******************************************/

Page 25: 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 104, Lecture 11 25

Use of Whitespace

Use blank lines to separate major parts of a source file or function

Separate declarations from executable statements with a blank line

Preprocessor directives, main(), and the braces are in column 1

Page 26: 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 104, Lecture 11 26

Use of Whitespace (continued)

All executable statements are indented one tab stop. How deep should my tabs be ?

Either 3 or 4 spaces. Choose whichever you like and use that same number consistently throughout your program.

2 spaces are not enough for good readability, more than 4 causes the indentation to be too deep.

Page 27: 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 104, Lecture 11 27

Another C Program

/*****************************************

** File: proj1.c

** Author: Joe Student

** Date: 9/15/01

** SSN: 123-45-6789

** Section: 0304

** E-mail: [email protected]

**

** This program prompts the user for two integer values then displays

** their product.

**

***********************************************/

Page 28: 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 104, Lecture 11 28

Another C Program (con’t)

#include <stdio.h>

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 ;

}