INTRODUCTION TO C C was developed by Dennis Ritchie at Bell laboratory in 1972 It is an upgrade version of languages B and BCPL.

Slides:



Advertisements
Similar presentations
01.00 Use the touch method in operating the keyboard and numeric keypad Objective 1.03 Execute the touch method in operating number and symbol keys.
Advertisements

Fundamentals of Computer and programming in C
Chapter 3: Beginning Problem Solving Concepts for the Computer Programming Computer Programming Skills /1436 Department of Computer Science.
1 Chapter 2 Introduction to Java Applications Introduction Java application programming Display ____________________ Obtain information from the.
Introduction to C++ Programming. A Simple Program: Print a Line of Text // My First C++ Program #include int main( ) { cout
A Left Tab stop sets the start position of text that will then run to the right as you type A Center Tab stop sets the position.
PUNCTUATION MARKS ETC. for Writing References & Citations.
HTML Character Entities. Character Entities Some characters have a special meaning in HTML, like the less than sign (
Regular Expression Original Notes by Song Guo. What Regular Expressions Are Exactly - Terminology a regular expression is a pattern describing a certain.
Asp.NET Core Vaidation Controls. Slide 2 ASP.NET Validation Controls (Introduction) The ASP.NET validation controls can be used to validate data on the.
 2008 Pearson Education, Inc. All rights reserved JavaScript: Introduction to Scripting.
JavaScript, Third Edition
Introduction to C Topics Compilation Using the gcc Compiler
Variable & Constants. A variable is a name given to a storage area that our programs can manipulate. Each variable in C has a specific type, which determines.
Characters & Strings Lesson 1 CS1313 Spring Characters & Strings Lesson 1 Outline 1.Characters & Strings Lesson 1 Outline 2.Numeric Encoding of.
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.
2440: 211 Interactive Web Programming Expressions & Operators.
C-Language Keywords(C99)
Constants in C A Presentation On Department of Computer & Information Technology, M.S.P.V.L. Polytechnic College, Pavoorchatram.
The Language of Math Punctuation. Punctuation is used in English and other languages to give meaning to what is written. Periods and question marks end.
JAVA Tokens. Introduction A token is an individual element in a program. More than one token can appear in a single line separated by white spaces.
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 Programming Angela Chih-Wei Tang ( 唐 之 瑋 ) Department of Communication Engineering National Central University JhongLi, Taiwan 2010 Fall.
C++ Character Set It is set of Characters/digits/symbol which is valid in C++. Example – A-Z, (white space) C++ Character Set It is set of.
 Pearson Education, Inc. All rights reserved Introduction to Java Applications.
ROUND 1 Name a method associated with class String 1.) 15 compareTo() 26 indexOf() 34 length() 2.) 3.) 4.) 3 toUpper() 7 substring() 11 charAt() 5.)
Chapter 1 – Matlab Overview EGR1302. Desktop Command window Current Directory window Command History window Tabs to toggle between Current Directory &
_______________________________________________________________________________________________________________ PHP Bible, 2 nd Edition1  Wiley and the.
Structured Programming
C programming language was developed in the seventies by a group of at the Bell Telephone lab. The C language was the outline of two earlier languages.
"Give a person a fish and you feed them for a day; teach that person to use the Internet and they won't bother you for weeks.“ --unknown "Treat your password.
Copyright © Curt Hill Regular Expressions Providing a Search Pattern.
Constants, Variables and Data types in C The C character Set A character denotes any alphabet, digit or special symbol used to represent information.
Topics to be covered  Introduction to C Introduction to C  Characterstics of C Characterstics of C  Characterset Characterset  Keywords Keywords 
Ajmer Singh PGT(IP) Programming Fundamentals. Ajmer Singh PGT(IP) Java Character Set Character set is a set of valid characters that a language can recognize.
 2001 Prentice Hall, Inc. All rights reserved. 1 Chapter 3 – Introduction to C# Programming Outline 3.1 Introduction 3.2 Simple Program: Printing a Line.
MAHENDRAN. Session Objectives Session Objectives  Discuss the Origin of C  Features of C  Characteristics of C  Current Uses of C  “C” Programming.
Introduction to C Programming
From Algorithms to Programs Both are sets of instructions on how to do a task Algorithm: –talking to humans, easy to understand –in plain (English) language.
INTRODUCTION TO C. OBJECTIVE -1 – Why C language is so important? – History of C language.
Introduction to ‘c’ language
RE Tutorial.
Definition of the Programming Language CPRL
Characters Lesson Outline
Math Grammar (math.xml)
Chapter 2, Part I Introduction to C Programming
Structured Programming
C Language VIVA Questions with Answers
Introduction to Scripting
Introduction to C++.
Getting Started with C.
' C ' PROGRAMMING SRM-MCA.
Section 3.2c Strings and Method Signatures
Intro to Java.
Javascript, Loops, and Encryption
INTRODUCTION c is a general purpose language which is very closely associated with UNIX for which it was developed in Bell Laboratories. Most of the programs.
C++ Basics.
Introduction to C++ Programming
Computer Symbols
Basics of ‘C’.
, : “ ” ( ) , : “ ” ( ) Punctuation Marks Colon Parenthesis
Introduction C is a general-purpose, high-level language that was originally developed by Dennis M. Ritchie to develop the UNIX operating system at Bell.
Introduction to C++ Programming
Chapter 3 – Introduction to C# Programming
Introduction to Java Applications
Characters Lesson Outline
Basic Programming Lab C.
Keyboard Test Study Guide
KEYBOARDING SKILLS NUMBER AND SYMBOL KEYS
PYTHON - VARIABLES AND OPERATORS
Presentation transcript:

INTRODUCTION TO C C was developed by Dennis Ritchie at Bell laboratory in 1972 It is an upgrade version of languages B and BCPL.

Features of C It is a structured programming language. It is highly portable. It is a middle level language. It is a case sensitive language. It uses Top-Down approach. It is a Free form language.etc,.

Steps in learning C Character Set ProgramsInstructionsTokens

C Character Set Execution Character Set Source Character Set Special Characters DigitsAlphabets Escape Sequence White Spaces

C Character Set (Cont) Source Character Set – It is used to construct the statements in the program. Executable Character Set – These characters are employed at the time of execution i.e. they have effects only when the program is being executed.

Source Character Set Lettersa to z,A to Z Digits0 to 9 Special # $ % ^ & * ( ) _ - + = \ | { } [ ] etc,. White SpacesBlank Space,Horizontal tab, New line, Vertical tab etc,.

Special characters Comma, Period or dot. Semicolon ; Colon : Apostrophe ‘ Quotation mark “ Exclamation mark ! Vertical bar | Back Slash \ Tilde ~ Underscore - Dollar $ Question mark ?

Ampersand & Caret ^ Asterisk * Minus- Addition+ Lesser than< Greater than> Parenthesis() Bracket[] Braces{} Percentage% Hash# Equal to= At the

Executable Character Set CharactersEscape Sequence Back Space\b Horizontal Space\t Vertical Space\v Newline\n

C Tokens The smallest element in the C language is the token. It may be a single character or a sequence of characters.