C / C++ and Unix Programming. Materials adapted from Dan Hood and Dianna Xu
|
|
|
- Laurence Bishop
- 9 years ago
- Views:
Transcription
1 C / C++ and Unix Programming Materials adapted from Dan Hood and Dianna Xu 1
2 C and Unix Programming Today s goals ú History of C ú Basic types ú printf ú Arithmetic operations, types and casting ú Intro to linux 2
3 UNIX History The UNIX operating system was born in the late 1960s. It originally began as a one man project led by Ken Thompson of Bell Labs, and has since grown to become the most widely used operating system. In the time since UNIX was first developed, it has gone through many different generations and even mutations. ú Some differ substantially from the original version, like Berkeley Software Distribution (BSD) or Linux. ú Others, still contain major portions that are based on the original source code. An interesting and rather up-to-date timeline of these variations of UNIX can be found at 3
4 General Characteristics of UNIX as an Operating System (OS) Multi-user & Multi-tasking - most versions of UNIX are capable of allowing multiple users to log onto the system, and have each run multiple tasks. This is standard for most modern OSs. Over 40 Years Old - UNIX is over 40 years old and it's popularity and use is still high. Over these years, many variations have spawned off and many have died off, but most modern UNIX systems can be traced back to the original versions. It has endured the test of time. For reference, Windows at best is half as old (Windows 1.0 was released in the mid 80s, but it was not stable or very complete until the 3.x family, which was released in the early 90s). Large Number of Applications there are an enormous amount of applications available for UNIX operating systems. They range from commercial applications such as CAD, Maya, WordPerfect, to many free applications. Free Applications and Even a Free Operating System - of all of the applications available under UNIX, many of them are free. The compilers and interpreters that we use in most of the programming courses here can be downloaded free of charge. Most of the development that we do in programming courses is done under the Linux OS. Less Resource Intensive - in general, most UNIX installations tend to be much less demanding on system resources. In many cases, the old family computer that can barely run Windows is more than sufficient to run the latest version of Linux. Internet Development - Much of the backbone of the Internet is run by UNIX servers. Many of the more general web servers run UNIX with the Apache web server - another free application. 4
5 The C Language Currently one of the most commonly-used programming languages High-level assembly Small, terse but powerful Very portable:compiler exists for virtually every processor Produces efficient code It is at once loved and hated 5
6 History of C Developed during in the bell labs C is a by product of Unix C is mostly credited to Dennis Ritchie Evolved from B, which evolved from BCPL 6
7 History of C Original machine (DEC PDP-11) was very small ú 24k bytes of memory, ú 12k used for operating systems When I say small, I mean memory size, not actual size. 7
8 Why is C Dangerous C s small, unambitious feature set is an advantage and disadvantage The price of C s flexibility C does not, in general, try to protect a programmer from his/her mistakes The International Obfuscated C Code Contest s ( winning entry 8
9 Programming Process Source code must carry extension.c But may be named with any valid Unix file name ú Example: 01-helloworld.c Lec # description C program Example program filename convention in this course 9
10 Example /* helloworld.c, Displays a message */ #include <stdio.h> int main() { printf( Hello, world!\n"); return 0; } helloworld.c 10
11 Hello World in C #include <stdio.h> Preprocessor used to share information among source files Similar to Java s import int main() { printf( Hello, world!\n ); return 0; } 11
12 Hello World in C #include <stdio.h> int main() { printf( Hello, world!\n ); return 0; } Program mostly a collection of functions main function special: the entry point int qualifier indicates function returns an integer I/O performed by a library function 12
13 The Compiler gcc (Gnu C Compiler) gcc g Wall helloworld.c o hw gcc flags ú -g (produce debugging info for gdb) ú -Wall (print warnings for all events) ú -o filename (name output file with filename, default is a.out) 13
14 Programming Process Summary Program (source) file compilation helloworld.c gcc g Wall helloworld.c o hw Object file C standard library linking/building Executable file hw All this is done under Unix 14
15 Case sensitive Ignores blanks Comments C Program Style 1. Ignored between /* and */ 2. Comments are integral to good programming! All local variables must be declared in the beginning of a function!!! 15
16 Integer Data Types ú C keyword: int, short, long ú Range: typically 32-bit (±2 billion), 16-bit, 64-bit Floating-point number ú C keyword: float, double ú Range: 32-bit (± ), 64-bit In general, use double ú Examples: 0.67f, f, 1.2E-6f, 0.67, , 1.2E-6 16
17 Variables and Basic Operations Declaration (identify variables and type) int x; int y, z; Assignment (value setting) x = 1; y = value-returning-expression; Reference (value retrieval) y = x * 2; 17
18 Integer Constants ú const int year = 2002; Floating point number ú const double pi = ; Constants are variables whose initial value can not be changed. Comparable to static final 18
19 Output characters Output Functions printf("text message\n"); Output an integer int x = 100; printf("value = %d\n", x); \n for new line Output: Value =
20 Variations Output a floating-point number double y = 1.23; printf("value = %f\n", y); Output multiple numbers int x = 100; double y = 1.23; 15 digits below decimal (excluding trailing 0 s) printf("x = %d, y = %f\n", x, y); Output: x = 100, y =
21 printf Summary printf(" ", ); Text containing special symbols ú %d for an integer ú %f for a floating-point number ú \n for a newline List of variables (or expressions) ú In the order correspoding to the % sequence 21
22 Display Problem Problem ú Precision of double: 15 digits ú Precision of %f: 6 digits below decimal ú Cannot show all the significant digits Solution ú More flexible display format possible with printf 22
23 % Specification %i int, char (to show value) %d same as above (d for decimal) %f double (floating-point) %e double (exponential, e.g., 1.5e3) 23
24 Formatting Precision %.#f Width %#f, %#d ú Note: Entire width Zero-padding %0#d Left-justification %-#d Various combinations of the above Replace # with digit(s) 24
25 Formatting Example (1) %f with > < %.10f with > < %.2f with >1.23< %d with >12345< %10d with > 12345< %2d with >12345< %f with > < %8.2f with > 1.23< 25
26 Formatting Example (2) %d:%d with 1 and 5 >1:5< %02d:%02d with 1 and 5 >01:05< %10d with > 12345< %-10d with >12345 < 11-formatting.c 26
27 Arithmetic Operators Unary: +, - (signs) Binary: +, -, * (multiplication), / (division), % (modulus, int remainder) Parentheses: ( and ) must always match. ú Good: (x), (x - (y - 1)) % 2 ú Bad: (x, )x( 27
28 Types and Casting Choose types carefully An arithmetic operation requires that the two values are of the same type For an expression that involves two different types, the compiler will cast the smaller type to the larger type Example: 4 * 1.5 =
29 Mixing Data Types int values only int ú 4 / 2 2 ú 3 / 2 1 ú int x = 3, y = 2; x / y 1 Involving a double value double ú 3.0 /
30 Assignment of Values int x; ú x = 1; ú x = 1.5; /* x is 1 */ double y; ú y = 1; /* y is 1.0 */ ú y = 1.5; ú y = 3 / 2; /* y is 1.0 */ warning int evaluation; warning 30
31 Example int i, j, k, l; double f; mixingtypes.c i = 3; j = 2; k = i / j; printf("k = %d\n", k); f = 1.5; l = f; /* warning */ printf("l = %d\n", l); /* truncated */ 31
32 sizeof and Type Conversions sizeof(type) ú The sizeof operator returns the number of bytes required to store the given type Implicit conversions ú arithmetic ú assignment ú function parameters ú function return type ú promotion if possible Explicit conversions ú casting int x; x = (int) 4.0; 32
33 Use of char (character) Basic operations ú Declaration: char c; ú Assignment: c = 'a'; ú Reference: c = c + 1; Constants ú Single-quoted character (only one) ú Special characters: '\n', '\t' (tab), '\"' (double quote), '\'' (single quote), '\ \' (backslash) 33
34 Characters are Integers A char type represents an integer value from 0 to 255 (1 byte) or 128 to 127. A single quoted character is called a character constant. C characters use ASCII representation: 'A' = 65 'Z' = 'A' + 25 = 90 'a' = 97 'z' = 'a' + 25 = 122 '0'!= 0 (48), '9' - '0' = 9 Never make assumptions of char values ú Always write 'A' instead of 65 34
35 ASCII Table American Standard Code for Information Interchange A standard way of representing the alphabet, numbers, and symbols (in computers) wikipedia on ASCII 35
36 Input char Input/Output ú char getchar() receives/returns a character ú Built-in function Output ú printf with %c specification int main() { chartypes.c char c; c = getchar(); printf("character >%c< has the value %d.\n", c, c); return 0; } 36
37 scanf Function scanf(" ", ); Format string containing special symbols ú %d for int ú %f for float ú %lf for double ú %c for char ú \n for a newline List of variables (or expressions) ú In the order correspoding to the % sequence 37
38 scanf Function The function scanf is the input analog of printf Each variable in the list MUST be prefixed with an &. Ignores white spaces unless format string contains %c 38
39 scanf Function int main() { int x; printf("enter a value:\n"); scanf("%d", &x); printf("the value is %d.\n", x); return 0; } 39
40 scanf with multiple variables int main() { scanf.c int x; char c; printf("enter an int and a char:"); scanf("%d %c", &x, &c); printf("the values are %d, %c.\n", x, c); return 0; } 40
41 scanf Function Each variable in the list MUST be prefixed with an &. Read from standard input (the keyboard) and tries to match the input with the specified pattern, one by one. If successful, the variable is updated; otherwise, no change in the variable. The process stops as soon as scanf exhausts its format string, or matching fails. Returns the number of successful matches. 41
42 scanf Continued White space in the format string match any amount of white space, including none, in the input. Leftover input characters, if any, including one \n remain in the input buffer, may be passed onto the next input function. ú Use getchar() to consume extra characters ú If the next input function is also scanf, it will ignore \n (and any white spaces). 42
43 scanf Notes Beware of combining scanf and getchar(). Use of multiple specifications can be both convenient and tricky. ú Experiment! Remember to use the return value for error checking. 43
44 if-else Statement int main() { int choice; scanf("%d", &choice); //user input } if (choice == 1) { printf("the choice was 1.\n"); } else { printf("the choice wasn't 1.\n"); } return 0; menu.c 44
45 Expressions Numeric constants and variables E.g., 1, 1.23, x Value-returning functions E.g., getchar() Expressions connected by an operator E.g., 1 + 2, x * 2, getchar()-1 All expressions have a type 45
46 Boolean Expressions C does not have type boolean False is represented by integer 0 Any expression evaluates to non-zero is considered true True is typically represented by 1 however 46
47 Conditional Expressions Equality/Inequality ú if (x == 1) ú if (x!= 1) Relation ú if (x > 0) > ú if (x >= 0) ú if (x < 0) < ú if (x <= 0) == (equality) = (assignment) The values are internally represented as integer. true 1 (not 0), false 0 47
48 Assignment as Expression Assignment ú Assignments are expressions ú Evaluates to value being assigned Example int x = 1, y = 2, z = 3; x = (y = z); evaluates to 3 evaluates to 3 (true) if (x = 3) {... } 48
49 Complex Condition And Or if ((x > 0) && (x <= 10)) if ((x > 10) (x < -10)) Negation if (!(x > 0)) not (x > 0) x 0 0 < x 10 x > 10 Beware that & and are also C operators 49
50 Lazy Logical Operator Evaluation If the conditions are sufficient to evaluate the entire expression, the evaluation terminates at that point => lazy Examples ú if ((x > 0) && (x <= 10)) Terminates if (x > 0) fails ú if ((x > 10)&&(x < 20)) (x < -10)) Terminates if (x > 10) && (x < 20) succeeds 50
51 Use of Braces if (choice == 1) { printf("1\n"); } else { printf("other\n"); } if (choice == 1) printf("1\n"); else printf("other\n"); When the operation is a single statement, '{' and '}' can be omitted. 51
52 switch Statement switch (integer expression) { case constant: statements Multi-branching break; case constant: statements break; possibly more cases default: statements } 52
53 break Fall Through Omitting break in a switch statement will cause program control to fall through to the next case Can be a very convenient feature Also generates very subtle bugs switch statements only test equality with integers 53
54 Example int x, y, result = 0; scanf("%d %d", &x, &y); switch(x) { case 1: break; case 2: case 3: result = 100; case 4: switch(y) { case 5: result += 200; break; default: result = -200; break; } break; default: result = 400; break; } 54
55 while Loops while (true) { /* some operation */ } 55
56 while and Character Input EOF is a constant defined in stdio.h ú Stands for End Of File int main() { int nc = 0, nl = 0; char c; charloop.c while ((c = getchar())!= EOF) { nc++; if (c == '\n') nl++; } printf("number of chars is %d and number of lines is %d\n", nc, nl); return 0; } 56
57 Review:Assignment has value In C, assignment expression has a value, which is the value of the lefthand side after assignment. Parens in(c = getchar())!= EOF are necessary. c = getchar()!= EOF is equivalent to c = (getchar()!= EOF) c gets assigned 0 or 1. 57
58 Summary C and Java s conditionals and loops are very similar C does not support booleans, uses 0 and 1 (not 0) instead Learn how to use scanf and getchar, especially with input loops Learn how C handles characters Programming style is important! 58
Informatica e Sistemi in Tempo Reale
Informatica e Sistemi in Tempo Reale Introduction to C programming Giuseppe Lipari http://retis.sssup.it/~lipari Scuola Superiore Sant Anna Pisa October 25, 2010 G. Lipari (Scuola Superiore Sant Anna)
Fundamentals of Programming
Fundamentals of Programming Introduction to the C language Giuseppe Lipari http://retis.sssup.it/~lipari Scuola Superiore Sant Anna Pisa February 29, 2012 G. Lipari (Scuola Superiore Sant Anna) The C language
Embedded Systems. Review of ANSI C Topics. A Review of ANSI C and Considerations for Embedded C Programming. Basic features of C
Embedded Systems A Review of ANSI C and Considerations for Embedded C Programming Dr. Jeff Jackson Lecture 2-1 Review of ANSI C Topics Basic features of C C fundamentals Basic data types Expressions Selection
Sources: On the Web: Slides will be available on:
C programming Introduction The basics of algorithms Structure of a C code, compilation step Constant, variable type, variable scope Expression and operators: assignment, arithmetic operators, comparison,
The programming language C. sws1 1
The programming language C sws1 1 The programming language C invented by Dennis Ritchie in early 1970s who used it to write the first Hello World program C was used to write UNIX Standardised as K&C (Kernighan
Keywords are identifiers having predefined meanings in C programming language. The list of keywords used in standard C are : unsigned void
1. Explain C tokens Tokens are basic building blocks of a C program. A token is the smallest element of a C program that is meaningful to the compiler. The C compiler recognizes the following kinds of
Bachelors of Computer Application Programming Principle & Algorithm (BCA-S102T)
Unit- I Introduction to c Language: C is a general-purpose computer programming language developed between 1969 and 1973 by Dennis Ritchie at the Bell Telephone Laboratories for use with the Unix operating
As previously noted, a byte can contain a numeric value in the range 0-255. Computers don't understand Latin, Cyrillic, Hindi, Arabic character sets!
Encoding of alphanumeric and special characters As previously noted, a byte can contain a numeric value in the range 0-255. Computers don't understand Latin, Cyrillic, Hindi, Arabic character sets! Alphanumeric
ASCII Encoding. The char Type. Manipulating Characters. Manipulating Characters
The char Type ASCII Encoding The C char type stores small integers. It is usually 8 bits. char variables guaranteed to be able to hold integers 0.. +127. char variables mostly used to store characters
So far we have considered only numeric processing, i.e. processing of numeric data represented
Chapter 4 Processing Character Data So far we have considered only numeric processing, i.e. processing of numeric data represented as integer and oating point types. Humans also use computers to manipulate
Name: Class: Date: 9. The compiler ignores all comments they are there strictly for the convenience of anyone reading the program.
Name: Class: Date: Exam #1 - Prep True/False Indicate whether the statement is true or false. 1. Programming is the process of writing a computer program in a language that the computer can respond to
Boolean Data Outline
1. Boolean Data Outline 2. Data Types 3. C Boolean Data Type: char or int 4. C Built-In Boolean Data Type: bool 5. bool Data Type: Not Used in CS1313 6. Boolean Declaration 7. Boolean or Character? 8.
VB.NET Programming Fundamentals
Chapter 3 Objectives Programming Fundamentals In this chapter, you will: Learn about the programming language Write a module definition Use variables and data types Compute with Write decision-making statements
Chapter One Introduction to Programming
Chapter One Introduction to Programming 1-1 Algorithm and Flowchart Algorithm is a step-by-step procedure for calculation. More precisely, algorithm is an effective method expressed as a finite list of
5 Arrays and Pointers
5 Arrays and Pointers 5.1 One-dimensional arrays Arrays offer a convenient way to store and access blocks of data. Think of arrays as a sequential list that offers indexed access. For example, a list of
Handout 1. Introduction to Java programming language. Java primitive types and operations. Reading keyboard Input using class Scanner.
Handout 1 CS603 Object-Oriented Programming Fall 15 Page 1 of 11 Handout 1 Introduction to Java programming language. Java primitive types and operations. Reading keyboard Input using class Scanner. Java
About The Tutorial. Audience. Prerequisites. Copyright & Disclaimer
About The Tutorial C is a general-purpose, procedural, imperative computer programming language developed in 1972 by Dennis M. Ritchie at the Bell Telephone Laboratories to develop the UNIX operating system.
3/13/2012. Writing Simple C Programs. ESc101: Decision making using if-else and switch statements. Writing Simple C Programs
Writing Simple C Programs ESc101: Decision making using if- and switch statements Instructor: Krithika Venkataramani Semester 2, 2011-2012 Use standard files having predefined instructions stdio.h: has
C Programming Tutorial
C Programming Tutorial C PROGRAMMING TUTORIAL Simply Easy Learning by tutorialspoint.com tutorialspoint.com i C O P Y R I G H T & D I S C L A I M E R N O T I C E All the content and graphics on this tutorial
Pemrograman Dasar. Basic Elements Of Java
Pemrograman Dasar Basic Elements Of Java Compiling and Running a Java Application 2 Portable Java Application 3 Java Platform Platform: hardware or software environment in which a program runs. Oracle
CS 106 Introduction to Computer Science I
CS 106 Introduction to Computer Science I 01 / 21 / 2014 Instructor: Michael Eckmann Today s Topics Introduction Homework assignment Review the syllabus Review the policies on academic dishonesty and improper
Simple C Programs. Goals for this Lecture. Help you learn about:
Simple C Programs 1 Goals for this Lecture Help you learn about: Simple C programs Program structure Defining symbolic constants Detecting and reporting failure Functionality of the gcc command Preprocessor,
CSC230 Getting Starting in C. Tyler Bletsch
CSC230 Getting Starting in C Tyler Bletsch What is C? The language of UNIX Procedural language (no classes) Low-level access to memory Easy to map to machine language Not much run-time stuff needed Surprisingly
Topics. Parts of a Java Program. Topics (2) CS 146. Introduction To Computers And Java Chapter Objectives To understand:
Introduction to Programming and Algorithms Module 2 CS 146 Sam Houston State University Dr. Tim McGuire Introduction To Computers And Java Chapter Objectives To understand: the meaning and placement of
Number Representation
Number Representation CS10001: Programming & Data Structures Pallab Dasgupta Professor, Dept. of Computer Sc. & Engg., Indian Institute of Technology Kharagpur Topics to be Discussed How are numeric data
Selection Statements
Chapter 5 Selection Statements 1 Statements So far, we ve used return statements and expression ess statements. e ts. Most of C s remaining statements fall into three categories: Selection statements:
CS 141: Introduction to (Java) Programming: Exam 1 Jenny Orr Willamette University Fall 2013
Oct 4, 2013, p 1 Name: CS 141: Introduction to (Java) Programming: Exam 1 Jenny Orr Willamette University Fall 2013 1. (max 18) 4. (max 16) 2. (max 12) 5. (max 12) 3. (max 24) 6. (max 18) Total: (max 100)
Introduction to Java
Introduction to Java The HelloWorld program Primitive data types Assignment and arithmetic operations User input Conditional statements Looping Arrays CSA0011 Matthew Xuereb 2008 1 Java Overview A high
Object Oriented Software Design
Object Oriented Software Design Introduction to Java - II Giuseppe Lipari http://retis.sssup.it/~lipari Scuola Superiore Sant Anna Pisa September 14, 2011 G. Lipari (Scuola Superiore Sant Anna) Introduction
COS 217: Introduction to Programming Systems
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
Computer Programming Tutorial
Computer Programming Tutorial COMPUTER PROGRAMMING TUTORIAL by tutorialspoint.com tutorialspoint.com i ABOUT THE TUTORIAL Computer Prgramming Tutorial Computer programming is the act of writing computer
Introduction to Java Applications. 2005 Pearson Education, Inc. All rights reserved.
1 2 Introduction to Java Applications 2.2 First Program in Java: Printing a Line of Text 2 Application Executes when you use the java command to launch the Java Virtual Machine (JVM) Sample program Displays
How To Write Portable Programs In C
Writing Portable Programs COS 217 1 Goals of Today s Class Writing portable programs in C Sources of heterogeneity Data types, evaluation order, byte order, char set, Reading period and final exam Important
CS1020 Data Structures and Algorithms I Lecture Note #1. Introduction to Java
CS1020 Data Structures and Algorithms I Lecture Note #1 Introduction to Java Objectives Java Basic Java features C Java Translate C programs in CS1010 into Java programs 2 References Chapter 1 Section
The C Programming Language course syllabus associate level
TECHNOLOGIES The C Programming Language course syllabus associate level Course description The course fully covers the basics of programming in the C programming language and demonstrates fundamental programming
C Programming. for Embedded Microcontrollers. Warwick A. Smith. Postbus 11. Elektor International Media BV. 6114ZG Susteren The Netherlands
C Programming for Embedded Microcontrollers Warwick A. Smith Elektor International Media BV Postbus 11 6114ZG Susteren The Netherlands 3 the Table of Contents Introduction 11 Target Audience 11 What is
Outline. hardware components programming environments. installing Python executing Python code. decimal and binary notations running Sage
Outline 1 Computer Architecture hardware components programming environments 2 Getting Started with Python installing Python executing Python code 3 Number Systems decimal and binary notations running
C++ Language Tutorial
cplusplus.com C++ Language Tutorial Written by: Juan Soulié Last revision: June, 2007 Available online at: http://www.cplusplus.com/doc/tutorial/ The online version is constantly revised and may contain
First Java Programs. V. Paúl Pauca. CSC 111D Fall, 2015. Department of Computer Science Wake Forest University. Introduction to Computer Science
First Java Programs V. Paúl Pauca Department of Computer Science Wake Forest University CSC 111D Fall, 2015 Hello World revisited / 8/23/15 The f i r s t o b l i g a t o r y Java program @author Paul Pauca
Variables, Constants, and Data Types
Variables, Constants, and Data Types Primitive Data Types Variables, Initialization, and Assignment Constants Characters Strings Reading for this class: L&L, 2.1-2.3, App C 1 Primitive Data There are eight
PROGRAMMING IN C PROGRAMMING IN C CONTENT AT A GLANCE
PROGRAMMING IN C CONTENT AT A GLANCE 1 MODULE 1 Unit 1 : Basics of Programming Unit 2 : Fundamentals Unit 3 : C Operators MODULE 2 unit 1 : Input Output Statements unit 2 : Control Structures unit 3 :
JavaScript: Control Statements I
1 7 JavaScript: Control Statements I 7.1 Introduction 2 The techniques you will learn here are applicable to most high-level languages, including JavaScript 1 7.2 Algorithms 3 Any computable problem can
Lecture 2 Notes: Flow of Control
6.096 Introduction to C++ January, 2011 Massachusetts Institute of Technology John Marrero Lecture 2 Notes: Flow of Control 1 Motivation Normally, a program executes statements from first to last. The
Lecture 22: C Programming 4 Embedded Systems
Lecture 22: C Programming 4 Embedded Systems Today s Goals Basic C programming process Variables and constants in C Pointers to access addresses Using a High Level Language High-level languages More human
J a v a Quiz (Unit 3, Test 0 Practice)
Computer Science S-111a: Intensive Introduction to Computer Science Using Java Handout #11 Your Name Teaching Fellow J a v a Quiz (Unit 3, Test 0 Practice) Multiple-choice questions are worth 2 points
Simple C++ Programs. Engineering Problem Solving with C++, Etter/Ingber. Dev-C++ Dev-C++ Windows Friendly Exit. The C++ Programming Language
Simple C++ Programs Engineering Problem Solving with C++, Etter/Ingber Chapter 2 Simple C++ Programs Program Structure Constants and Variables C++ Operators Standard Input and Output Basic Functions from
C PROGRAMMING FOR MATHEMATICAL COMPUTING
UNIVERSITY OF CALICUT SCHOOL OF DISTANCE EDUCATION BSc MATHEMATICS (2011 Admission Onwards) VI Semester Elective Course C PROGRAMMING FOR MATHEMATICAL COMPUTING QUESTION BANK Multiple Choice Questions
Object Oriented Software Design
Object Oriented Software Design Introduction to Java - II Giuseppe Lipari http://retis.sssup.it/~lipari Scuola Superiore Sant Anna Pisa October 28, 2010 G. Lipari (Scuola Superiore Sant Anna) Introduction
1. Boolean Data Type & Expressions Outline. Basic Data Types. Numeric int float Non-numeric char
Boolean Data Type & Expressions Outline. Boolean Data Type & Expressions Outline 2. Basic Data Types 3. C Boolean Data Types: char or int/ Boolean Declaration 4. Boolean or Character? 5. Boolean Literal
JAVA - QUICK GUIDE. Java SE is freely available from the link Download Java. So you download a version based on your operating system.
http://www.tutorialspoint.com/java/java_quick_guide.htm JAVA - QUICK GUIDE Copyright tutorialspoint.com What is Java? Java is: Object Oriented Platform independent: Simple Secure Architectural- neutral
Phys4051: C Lecture 2 & 3. Comment Statements. C Data Types. Functions (Review) Comment Statements Variables & Operators Branching Instructions
Phys4051: C Lecture 2 & 3 Functions (Review) Comment Statements Variables & Operators Branching Instructions Comment Statements! Method 1: /* */! Method 2: // /* Single Line */ //Single Line /* This comment
Basic Java Constructs and Data Types Nuts and Bolts. Looking into Specific Differences and Enhancements in Java compared to C
Basic Java Constructs and Data Types Nuts and Bolts Looking into Specific Differences and Enhancements in Java compared to C 1 Contents Hello World Program Statements Explained Java Program Structure in
Outline. Conditional Statements. Logical Data in C. Logical Expressions. Relational Examples. Relational Operators
Conditional Statements For computer to make decisions, must be able to test CONDITIONS IF it is raining THEN I will not go outside IF Count is not zero THEN the Average is Sum divided by Count Conditions
Tutorial on C Language Programming
Tutorial on C Language Programming Teodor Rus [email protected] The University of Iowa, Department of Computer Science Introduction to System Software p.1/64 Tutorial on C programming C program structure:
Secrets of printf. 1 Background. 2 Simple Printing. Professor Don Colton. Brigham Young University Hawaii. 2.1 Naturally Special Characters
Secrets of Professor Don Colton Brigham Young University Hawaii is the C language function to do formatted printing. The same function is also available in PERL. This paper explains how works, and how
Operating Systems. Privileged Instructions
Operating Systems Operating systems manage processes and resources Processes are executing instances of programs may be the same or different programs process 1 code data process 2 code data process 3
CPSC 226 Lab Nine Fall 2015
CPSC 226 Lab Nine Fall 2015 Directions. Our overall lab goal is to learn how to use BBB/Debian as a typical Linux/ARM embedded environment, program in a traditional Linux C programming environment, and
Stacks. Linear data structures
Stacks Linear data structures Collection of components that can be arranged as a straight line Data structure grows or shrinks as we add or remove objects ADTs provide an abstract layer for various operations
C Language Tutorial. Version 0.042 March, 1999
C Language Tutorial Version 0.042 March, 1999 Original MS-DOS tutorial by Gordon Dodrill, Coronado Enterprises. Moved to Applix by Tim Ward Typed by Karen Ward C programs converted by Tim Ward and Mark
How To Port A Program To Dynamic C (C) (C-Based) (Program) (For A Non Portable Program) (Un Portable) (Permanent) (Non Portable) C-Based (Programs) (Powerpoint)
TN203 Porting a Program to Dynamic C Introduction Dynamic C has a number of improvements and differences compared to many other C compiler systems. This application note gives instructions and suggestions
Java Interview Questions and Answers
1. What is the most important feature of Java? Java is a platform independent language. 2. What do you mean by platform independence? Platform independence means that we can write and compile the java
CP Lab 2: Writing programs for simple arithmetic problems
Computer Programming (CP) Lab 2, 2015/16 1 CP Lab 2: Writing programs for simple arithmetic problems Instructions The purpose of this Lab is to guide you through a series of simple programming problems,
C++ Input/Output: Streams
C++ Input/Output: Streams 1 The basic data type for I/O in C++ is the stream. C++ incorporates a complex hierarchy of stream types. The most basic stream types are the standard input/output streams: istream
General Software Development Standards and Guidelines Version 3.5
NATIONAL WEATHER SERVICE OFFICE of HYDROLOGIC DEVELOPMENT Science Infusion Software Engineering Process Group (SISEPG) General Software Development Standards and Guidelines 7/30/2007 Revision History Date
Chapter 2: Elements of Java
Chapter 2: Elements of Java Basic components of a Java program Primitive data types Arithmetic expressions Type casting. The String type (introduction) Basic I/O statements Importing packages. 1 Introduction
UIL Computer Science for Dummies by Jake Warren and works from Mr. Fleming
UIL Computer Science for Dummies by Jake Warren and works from Mr. Fleming 1 2 Foreword First of all, this book isn t really for dummies. I wrote it for myself and other kids who are on the team. Everything
Introduction to Python
WEEK ONE Introduction to Python Python is such a simple language to learn that we can throw away the manual and start with an example. Traditionally, the first program to write in any programming language
Java Basics: Data Types, Variables, and Loops
Java Basics: Data Types, Variables, and Loops If debugging is the process of removing software bugs, then programming must be the process of putting them in. - Edsger Dijkstra Plan for the Day Variables
AP Computer Science Java Subset
APPENDIX A AP Computer Science Java Subset The AP Java subset is intended to outline the features of Java that may appear on the AP Computer Science A Exam. The AP Java subset is NOT intended as an overall
Programming Microcontrollers in C
Programming Microcontrollers in C Second Edition Ted Van Sickle A Volume in the EMBEDDED TECHNOLOGY TM Series Eagle Rock, Virginia www.llh-publishing.com Programming Microcontrollers in C 2001 by LLH Technology
arrays C Programming Language - Arrays
arrays So far, we have been using only scalar variables scalar meaning a variable with a single value But many things require a set of related values coordinates or vectors require 3 (or 2, or 4, or more)
What is a Loop? Pretest Loops in C++ Types of Loop Testing. Count-controlled loops. Loops can be...
What is a Loop? CSC Intermediate Programming Looping A loop is a repetition control structure It causes a single statement or a group of statements to be executed repeatedly It uses a condition to control
ELEC3730 Embedded Systems Lecture 1: Introduction and C Essentials
ELEC3730 Embedded Systems Lecture 1: Introduction and C Essentials Overview of Embedded Systems Essentials of C programming - Lecture 1 1 Embedded System Definition and Examples Embedded System Definition:
Objective-C Tutorial
Objective-C Tutorial OBJECTIVE-C TUTORIAL Simply Easy Learning by tutorialspoint.com tutorialspoint.com i ABOUT THE TUTORIAL Objective-c tutorial Objective-C is a general-purpose, object-oriented programming
6.S096 Lecture 1 Introduction to C
6.S096 Lecture 1 Introduction to C Welcome to the Memory Jungle Andre Kessler Andre Kessler 6.S096 Lecture 1 Introduction to C 1 / 30 Outline 1 Motivation 2 Class Logistics 3 Memory Model 4 Compiling 5
C++FA 5.1 PRACTICE MID-TERM EXAM
C++FA 5.1 PRACTICE MID-TERM EXAM This practicemid-term exam covers sections C++FA 1.1 through C++FA 1.4 of C++ with Financial Applications by Ben Van Vliet, available at www.benvanvliet.net. 1.) A pointer
Example of a Java program
Example of a Java program class SomeNumbers static int square (int x) return x*x; public static void main (String[] args) int n=20; if (args.length > 0) // change default n = Integer.parseInt(args[0]);
Chapter 3. Input and output. 3.1 The System class
Chapter 3 Input and output The programs we ve looked at so far just display messages, which doesn t involve a lot of real computation. This chapter will show you how to read input from the keyboard, use
High-Level Programming Languages. Nell Dale & John Lewis (adaptation by Michael Goldwasser)
High-Level Programming Languages Nell Dale & John Lewis (adaptation by Michael Goldwasser) Low-Level Languages What are disadvantages of low-level languages? (e.g., machine code or assembly code) Programming
Object-Oriented Programming in Java
CSCI/CMPE 3326 Object-Oriented Programming in Java Class, object, member field and method, final constant, format specifier, file I/O Dongchul Kim Department of Computer Science University of Texas Rio
1.00/1.001 - Session 2 Fall 2004. Basic Java Data Types, Control Structures. Java Data Types. 8 primitive or built-in data types
1.00/1.001 - Session 2 Fall 2004 Basic Java Data Types, Control Structures Java Data Types 8 primitive or built-in data types 4 integer types (byte, short, int, long) 2 floating point types (float, double)
PART-A Questions. 2. How does an enumerated statement differ from a typedef statement?
1. Distinguish & and && operators. PART-A Questions 2. How does an enumerated statement differ from a typedef statement? 3. What are the various members of a class? 4. Who can access the protected members
Computers. Hardware. The Central Processing Unit (CPU) CMPT 125: Lecture 1: Understanding the Computer
Computers CMPT 125: Lecture 1: Understanding the Computer Tamara Smyth, [email protected] School of Computing Science, Simon Fraser University January 3, 2009 A computer performs 2 basic functions: 1.
C++ Programming Language
C++ Programming Language Lecturer: Yuri Nefedov 7th and 8th semesters Lectures: 34 hours (7th semester); 32 hours (8th semester). Seminars: 34 hours (7th semester); 32 hours (8th semester). Course abstract
The string of digits 101101 in the binary number system represents the quantity
Data Representation Section 3.1 Data Types Registers contain either data or control information Control information is a bit or group of bits used to specify the sequence of command signals needed for
Topics. Introduction. Java History CS 146. Introduction to Programming and Algorithms Module 1. Module Objectives
Introduction to Programming and Algorithms Module 1 CS 146 Sam Houston State University Dr. Tim McGuire Module Objectives To understand: the necessity of programming, differences between hardware and software,
CS 241 Data Organization Coding Standards
CS 241 Data Organization Coding Standards Brooke Chenoweth University of New Mexico Spring 2016 CS-241 Coding Standards All projects and labs must follow the great and hallowed CS-241 coding standards.
CS1010 Programming Methodology A beginning in problem solving in Computer Science. Aaron Tan http://www.comp.nus.edu.sg/~cs1010/ 20 July 2015
CS1010 Programming Methodology A beginning in problem solving in Computer Science Aaron Tan http://www.comp.nus.edu.sg/~cs1010/ 20 July 2015 Announcements This document is available on the CS1010 website
In this Chapter you ll learn:
Now go, write it before them in a table, and note it in a book. Isaiah 30:8 To go beyond is as wrong as to fall short. Confucius Begin at the beginning, and go on till you come to the end: then stop. Lewis
Introduction to Python
Caltech/LEAD Summer 2012 Computer Science Lecture 2: July 10, 2012 Introduction to Python The Python shell Outline Python as a calculator Arithmetic expressions Operator precedence Variables and assignment
1 Introduction. 2 An Interpreter. 2.1 Handling Source Code
1 Introduction The purpose of this assignment is to write an interpreter for a small subset of the Lisp programming language. The interpreter should be able to perform simple arithmetic and comparisons
Numbering Systems. InThisAppendix...
G InThisAppendix... Introduction Binary Numbering System Hexadecimal Numbering System Octal Numbering System Binary Coded Decimal (BCD) Numbering System Real (Floating Point) Numbering System BCD/Binary/Decimal/Hex/Octal
PHP Debugging. Draft: March 19, 2013 2013 Christopher Vickery
PHP Debugging Draft: March 19, 2013 2013 Christopher Vickery Introduction Debugging is the art of locating errors in your code. There are three types of errors to deal with: 1. Syntax errors: When code
Advanced Bash Scripting. Joshua Malone ([email protected])
Advanced Bash Scripting Joshua Malone ([email protected]) Why script in bash? You re probably already using it Great at managing external programs Powerful scripting language Portable and version-stable
Introduction to Visual C++.NET Programming. Using.NET Environment
ECE 114-2 Introduction to Visual C++.NET Programming Dr. Z. Aliyazicioglu Cal Poly Pomona Electrical & Computer Engineering Cal Poly Pomona Electrical & Computer Engineering 1 Using.NET Environment Start
An Incomplete C++ Primer. University of Wyoming MA 5310
An Incomplete C++ Primer University of Wyoming MA 5310 Professor Craig C. Douglas http://www.mgnet.org/~douglas/classes/na-sc/notes/c++primer.pdf C++ is a legacy programming language, as is other languages
1 Abstract Data Types Information Hiding
1 1 Abstract Data Types Information Hiding 1.1 Data Types Data types are an integral part of every programming language. ANSI-C has int, double and char to name just a few. Programmers are rarely content
csce4313 Programming Languages Scanner (pass/fail)
csce4313 Programming Languages Scanner (pass/fail) John C. Lusth Revision Date: January 18, 2005 This is your first pass/fail assignment. You may develop your code using any procedural language, but you
