C Programming Lecture 4 : Variables , Data Types

Slides:



Advertisements
Similar presentations
Pemrograman C Risanuri Hidayat. Why C  Compact, fast, and powerful  “Mid-level” Language  Standard for program development (wide acceptance)  It is.
Advertisements

C Programming Day 1 based upon Practical C Programming by Steve Oualline CS550 Operating Systems.
Lecture 2 Introduction to C Programming
Introduction to C Programming
 2000 Prentice Hall, Inc. All rights reserved. Chapter 2 - Introduction to C Programming Outline 2.1Introduction 2.2A Simple C Program: Printing a Line.
Principles of Programming Fundamental of C Programming Language and Basic Input/Output Function 1.
Types and Variables. Computer Programming 2 C++ in one page!
Software Development Method. Assignments Due – Homework 0, Warmup Reading – Chapter 2 –
1 9/10/07CS150 Introduction to Computer Science 1 Data Types Section 2.7 – 2.12 CS 150 Introduction to Computer Science I.
Structure of a C program
1 Lecture 2  Input-Process-Output  The Hello-world program  A Feet-to-inches program  Variables, expressions, assignments & initialization  printf()
1 9/8/08CS150 Introduction to Computer Science 1 Data Types Section 2.7 – 2.12 CS 150 Introduction to Computer Science I.
1 Key Concepts:  Why C?  Life Cycle Of a C program,  What is a computer program?  A program statement?  Basic parts of a C program,  Printf() function?
Introduction to C Programming Overview of C Hello World program Unix environment C programming basics.
CS150 Introduction to Computer Science 1
Chapter 3: Introduction to C Programming Language C development environment A simple program example Characters and tokens Structure of a C program –comment.
Chapter 2 Getting Started in C Programming
A First Book of ANSI C Fourth Edition
Introduction to Programming Prof. Rommel Anthony Palomino Department of Computer Science and Information Technology Spring 2011.
Elements of a C++ program 1. Review Algorithms describe how to solve a problem Structured English (pseudo-code) Programs form that can be translated into.
A Variable is symbolic name that can be given different values. Variables are stored in particular places in the computer ‘s memory. When a variable is.
Input & Output: Console
IPC144 Introduction to Programming Using C Week 1 – Lesson 2
C Tokens Identifiers Keywords Constants Operators Special symbols.
Sales person receive RM200/week plus 9% of their gross sales for that week. Write an algorithms to calculate the sales person’s earning from the input.
Program A computer program (also software, or just a program) is a sequence of instructions written in a sequence to perform a specified task with a computer.
CSE 1301 Lecture 2 Data Types Figures from Lewis, “C# Software Solutions”, Addison Wesley Richard Gesick.
© Copyright 1992–2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. Chapter 2 Chapter 2 - Introduction to C Programming.
Week 1 Algorithmization and Programming Languages.
BASICS CONCEPTS OF ‘C’.  C Character Set C Character Set  Tokens in C Tokens in C  Constants Constants  Variables Variables  Global Variables Global.
Introduction to Programming
CSCI 3133 Programming with C Instructor: Bindra Shrestha University of Houston – Clear Lake.
Chapter 4 Literals, Variables and Constants. #Page2 4.1 Literals Any numeric literal starting with 0x specifies that the following is a hexadecimal value.
Constants, Variables and Data types in C The C character Set A character denotes any alphabet, digit or special symbol used to represent information.
C++ Programming Lecture 3 C++ Basics – Part I The Hashemite University Computer Engineering Department (Adapted from the textbook slides)
Programming Fundamentals. Overview of Previous Lecture Phases of C++ Environment Program statement Vs Preprocessor directive Whitespaces Comments.
© Copyright 1992–2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. 1 Chapter 2 - Introduction to C Programming Outline.
Tokens in C  Keywords  These are reserved words of the C language. For example int, float, if, else, for, while etc.  Identifiers  An Identifier is.
Types Chapter 2. C++ An Introduction to Computing, 3rd ed. 2 Objectives Observe types provided by C++ Literals of these types Explain syntax rules for.
Sudeshna Sarkar, IIT Kharagpur 1 Programming and Data Structure Sudeshna Sarkar Lecture 3.
BIL 104E Introduction to Scientific and Engineering Computing Lecture 2.
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.
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.
Chapter 2 Variables and Constants. Objectives Explain the different integer variable types used in C++. Declare, name, and initialize variables. Use character.
2.1 The Part of a C++ Program. The Parts of a C++ Program // sample C++ program #include using namespace std; int main() { cout
Introduction to ‘c’ language
Chapter # 2 Part 2 Programs And data
Chapter 1.2 Introduction to C++ Programming
CSCE 206 Structured Programming in C
Chapter 1.2 Introduction to C++ Programming
BASIC ELEMENTS OF A COMPUTER PROGRAM
Chapter 2 - Introduction to C Programming
Revision Lecture
Chapter 2 - Introduction to C Programming
Chapter 2: Introduction to C++
Chapter 2 - Introduction to C Programming
Chapter 2 - Introduction to C Programming
Introduction to CS Your First C Programs
2.1 Parts of a C++ Program.
פרטים נוספים בסילבוס של הקורס
Chapter 2 - Introduction to C Programming
Chapter 2 - Introduction to C Programming
Chapter # 2 Part 2 Programs And data
elementary programming
Chapter 2: Introduction to C++.
C++ Programming Lecture 3 C++ Basics – Part I
Chapter 2 - Introduction to C Programming
C++ Programming Basics
Introduction to C Programming
Variables and Constants
Presentation transcript:

C Programming Lecture 4 : Variables , Data Types Lecture notes : courtesy of Ohio Supercomputing Center, science and technolgy support

First Program C is case sensitive. #include <stdio.h> int main() { /* My first program */ printf("Hello World! \n"); return 0; } Output : Hello World! C is case sensitive. End of each statement must be marked with a semicolon (;). Multiple statements can be on the same line. White space (e.g. space, tab, enter, …) is ignored.

First Program The C program starting point : main(). #include <stdio.h> int main() { /* My first program */ printf("Hello World! \n"); return 0; } The C program starting point : main(). main() {} indicates where the program actually starts and ends. In general, braces {} are used throughout C to enclose a block of statements to be treated as a unit. COMMON ERROR: unbalanced number of open and close curly brackets! Output : Hello World!

First Program #include <stdio.h> int main() { /* My first program */ printf("Hello World! \n"); return 0; } #include <stdio.h> Including a header file stdio.h Allows the use of printf function For each function built into the language, an associated header file must be included. printf() is actually a function (procedure) in C that is used for printing variables and text Output : Hello World!

First Program Comments /* My first program */ #include <stdio.h> int main() { /* My first program */ printf("Hello World! \n"); return 0; } Comments /* My first program */ Comments are inserted between “/*” and “*/” Or, you can use “//” Primarily they serve as internal documentation for program structure and function. Output : Hello World!

Why use comments? Documentation of variables, functions and algorithms Ex) for each function, explain input and output of the function, and what the function does. Describes the program, author, date, modification changes, revisions,…

Header Files Header files contain definitions of functions and variables Preprocessor #include insert the codes of a header file into the source code. Standard header files are provided with each compiler To use any of the standard functions, the appropriate header file should be included. Ex) to use printf() function , insert #include <stdio.h> In UNIX, standard header files are generally located in the /usr/include subdirectory

Header Files #include <string.h> #include <math.h> #include “mylib.h” The use of brackets <> informs the compiler to search the compiler’s include directories for the specified file. The use of the double quotes “” around the filename informs the compiler to start the search in the current directory for the specified file.

Second Program #include <stdio.h> #define TAXRATE 0.10 int main () { float balance; float tax=0.0; /* declaration + initialization */ char rate=‘A’; int credit_no=1; balance = 72.10; tax = balance * TAXRATE; printf("The tax on %.2f is %.2f\n",balance, tax); printf(“CREDIT RATE : %d/%c\n”, credit_no, rate); return 0; } Output : The tax on 72.10 is 7.21 CREDIT RATE : 1/A

Names in C Identifiers (variable name) Keywords Must begin with a character or underscore(_) May be followed by any combination of characters, underscores, or digits(0-9) Case sensitive Ex) summary, exit_flag, i, _id, jerry7 Keywords Reserved identifiers that have predefined meaning to the C compiler. C only has 29 keywords. Ex) if , else, char, int, while

Symbolic Constants Names given to values that cannot be changed. Use preprocessor directive #define Symbols which occur in the C program are replaced by their value before actual compilation #define N 3000 #define FALSE 0 #define PI 3.14159 #define FIGURE "triangle"

Declaring Variables Variable Basic declaration format Named memory location where data value is stored Each variable has a certain type (e.g. int, char, float, …) Contents of a variable can change Variables must be declared before use in a program Declaration of variables should be done at the opening brace of a function in C. ( it is more flexible in C++ ) Basic declaration format data_type var1, var2, …; Examples) int i,j,k; float length, height;

Data Types char : 1 byte, capable of holding one character (ascii code) int : 4 byte (on 32bit computer) integer float : single-precision floating point double : double-precision floating point type size min value max value char 1byte -27 = -128 27-1 = 127 short 2byte -215 = -32,768 215-1 = 32,767 int 4byte -231 = -2,147,483,648 231-1 = 2,147,483,647 long Min/Max values are defined in <limit.h> header file

unsigned type Use when representing only positive numbers Data type size min max unsigned char 1byte 28-1 =                        255 unsigned short 2 byte 216-1 =                     65,535 unsigned int 4byte 232-1 =              4,294,967,295

Negative integer representation signed first bit represents the sign of a number Rest of bits represent the value of a number Negative integer number Represented as 2’s complement number Bit representation +5 00000101 1’s complement of 5 11111010 2’s complement of 5 11111011 -5

floating point real number : significant number + position of decimal point Decimal point(.) can be placed anywhere relative to the significant digits of the number This position is indicated separately in the internal representation Advantage of floating point representation Support much wider range of values Representing 314159265358979.3 vs 3.141592653589793 type size min max float 4 byte (7 significant numbers) -1.0E+38 1.0E+38 double 8 byte (15 significant numbers) -1.0E+308 1.0E+308

Ascii Code

Escape character Starts with backslash(\) Indicate special meaning and interpretation Escape character meaning \b backspace \t tab \n newline \r formfeed \" double quote \' single quote \\ back slash

code.c output: a 97 A 65 1 49 $ 36 + 43

getchar() , putchar() int getchar() int putchar(int c) Defined in <stdio.h>, Get one character input from keyboard and return the ascii value int putchar(int c) Defined in <stdio.h> prints one character provided as a parameter #include <stdio.h> int main() { int c; printf(“keyboard input (one character?)”); c=getchar(); printf(“character input : %c\n”,c); printf(“ascii code : %d\n”, c); return 0; } Output : character input : A ascii code : 65

korea.c Output : korea info univ no : 276 putpulation: 48295000 #include <stdio.h> int main() { short no_univ = 276; int population = 48295000; long budget = 237000000000000L; printf(“korea info\n”); printf(“univ no : %d\n”, no_univ); printf(“population : %d\n”, population); printf(“budget : %d\n”, budget); return 0; } Output : korea info univ no : 276 putpulation:   48295000 budget:   -590360576

Overflow? (integer type) overflow occurs when storing a value that is bigger than what can be stored. Ex) 2,147,483,647 (= 231-1) + 1 = ? 01111111 11111111 11111111 11111111 + 00000000 00000000 00000000 00000001 --------------------------------------------------   10000000 00000000 00000000 00000000 #include <stdio.h> int main() { int a=2147483647; printf("%d,%d\n",a,a+1); return 0; }