SlideShare a Scribd company logo
Topics To Be Covered
 Structure Of C Program
 Identifiers
 Basic Data Types And Sizes
 Constants
 Variables
 Expressions
 Operators
 Input/output Statements
Structure of a C Program
Every C program consists of one or more modules called functions. One
of the functions must be called main. The program will always begin by
executing the main function
Each function must contain:
1. A function heading, which consists of the function name, followed
by an optional list of arguments,
1. A list of argument declarations, if arguments are included
3. A compound statement, which comprises the remainder of the
function.
• Each compound statement is enclosed within a pair of braces, { }.
• Compound statements may be nested, one within another
• Each expression statement must end with a semicolon (; )
Example Use Of Comments
The comments at the end of each line have been added in order to
emphasize the overall program organization
Normally a C program will not look like this. Rather, it might
appear as shown below.
Execution of the program results in an interactive dialog such as that
shown below. The user's response is underlined, for clarity.
Radius = 7 3
Area = 28.274309
IDENTIFIERS AND KEYWORDS
 identifiers are names that are given to various program elements,
such as variables, functions and arrays.
 Identifiers consist of letters and digits, in any order, except that the
first character must be a letter.
 Both upper- and lowercase letters are permitted, though common
usage favors the use of lowercase letters for most
 Types of identifiers. Upper- and lowercase letters are not
interchangeable
 The underscore character ( - ) can also be included, and is
considered to be a letter.
 An underscore is often used in the middle of an identifier.
 An identifier may also begin with an underscore, though this is
rarely done in practice.
The following names are not valid identifiers ,For the reasons stated.
The following names are not valid identifiers
For the reasons stated.
Some Other Points About Identifiers
 The identifiers file-manager and file-management are both
grammatically valid. Some compilers may be unable to distinguish
between them, however, because the first eight letters are the same for
each identifier. Therefore, only one of these identifiers should be used
in a single C program.
 As a rule, an identifier should contain enough characters so that its
meaning is readily apparent.
 On the other hand, an excessive number of characters should be
avoided.
 A C program is being written to calculate the future value of an
investment. The identifiers value or future-value are appropriate
symbolic names. However, v or fv would probably be too brief, since
the intended representation of these identifiers is not clear. On the
other hand, the identifier future-value-of-an-investment would be
unsatisfactory because it is too long
Keywords
• There are certain reserved words, called keywords, that have
standard, predefined meanings in C.
• These keywords can be used only for their intended purpose;
• They cannot be used as programmer-defined identifiers.
• The standard keywords are
Some compilers also include some or all of the following keywords.
DATA TYPES
• C supports several different types of data
• Each may be represented differently within the computer’s memory
• The basic data types are listed below (Next Slide).
• Typical memory requirements are also given
• The memory requirements determine the permissible range of values
•
• Note that the memory requirements for each data type may vary
from one C compiler to another
C compilers written for personal computers or small minicomputers
(i.e., computers whose natural word size is less than 32 bits)
generally represent a word as 4 bytes (32 bits)
Points to Remember
• The basic data types can be augmented by the use of the data type
qualijiers short , long, signed and unsigned.
• Integer can be defined as short int , long int or unsigned int
• Usually written simply as short , long or unsigned
• The interpretation of integer data type will vary from one C
compiler to another
• A short int may require less or same memory than an ordinary int
but it will never exceed an ordinary int in word length.
• A long int may require the same amount of memory as an
ordinary in t or it may require more memory, but it will never be
less than an ordinary int .
• If short int and int both have the same memory requirements (e.g.,
2 bytes), then long int will generally have double the
requirements (e.g., 4 bytes)
Points to Remember
• If int and long int both have the same memory requirements (e.g.,
4 bytes) then short int will generally have half the memory
requirements (e.g., 2 bytes)
• An unsigned int has the same memory requirements as an ordinary
i n t . However, in the case of an ordinary int , the leftmost bit is
reserved for the sign.
• With an unsigned int , all of the bits are used to represent the
numerical value. Thus, an unsigned int can be approximately twice
as large as an ordinary int (though, of course, negative values are
not permitted).
• For example, if an ordinary int can vary from -32,768 to +32,767
(which is typical for a 2-byte int ) , then an unsigned int will be
allowed to vary from 0 to 65,535. The unsigned qualifier can also
be applied to other qualified int
CONSTANTS
There are four basic types of constants in C.
1. Integer constants,
2. Floating-point constants
3. Character constants
4. String constants
Integer and floating-point constants represent numbers.
They are often referred to collectively as numeric-type constants.
The following rules apply to all numeric-type constants.
 Commas and blank spaces cannot be included within
 The constant can be preceded by a minus (-) sign if desired
 The value of a constant cannot exceed specified minimum and
maximum bounds.
Integer Constants
• An integer constant is an integer-valued number.
• It consists of a sequence of digits.
• Integer constants can be written in three different number systems:
decimal (base lO), octal (base 8) and hexadecimal (base 16).
• A decimal integer constant can consist of any combination of
digits taken from the set 0 through 9.
• If the constant contains two or more digits, the first digit must be
something other than 0.
Structure of c_program_to_input_output
Octal Integer Constant
An octal integer constant can consist of any combination of
digits taken from the set 0 through 7. However the first digit
must be 0,in order to identify the constant as an octal number.
Hexadecimal Integer Constant
A hexadecimal integer constant must begin with either Ox or OX. It
can then be followed by any combination of digits taken from the sets
0 through 9 and a through f (either upper- or lowercase). Note that
the letters a through f (or A through F) represent the (decimal)
quantities 10 through 15, respectively.
Unsigned and Long Integer Constants
 Unsigned integer constants may exceed the magnitude of ordinary
integer constants by approximately a factor of 2, though they may
not be negative.* An unsigned integer constant can be identified by
appending the letter U (either upper- or lowercase) to the end of the
constant.
 Long integer constants may exceed the magnitude of ordinary
integer constants, to create a long integer constant by appending the
letter L (either upper- or lowercase) to the end of the constant. An
unsigned long integer may be specified by appending the letters UL
to the end of the constant. The letters may be written in either upper-
or lowercase. However, the U must precede the L.
Structure of c_program_to_input_output
Floating-Point Constants
A floating-point constant is a base- 10 number that contains either
a decimal point or an exponent (or both).
Character Constants
A character constant is a single character, enclosed in apostrophes (i.e.,
single quotation marks). Several character constants are shown below.
Escape Sequences
Certain nonprinting characters, as well as the backslash () and the
apostrophe (‘’ ), can be expressed in terms of escape sequences.
An escape sequence always begins with a backward slash and is
followed by one or more special characters.
The commonly used escape sequences are listed below.
String Constants
A string constant consists of any number of consecutive characters
(including none), enclosed in double quotation marks.
Several string constants are shown below.
Note that the string constant "Line 1n Line 2n Line 3" extends over
three lines, because of the newline characters that are embedded
within the string. Thus, this string would be displayed as
Line 1
Line 2
Line 3
Also, notice that the string “ ” is a null (empty) string
EXPRESSIONS
• An expression represents a single data item, such as a number or a
character.
• The expression may consist of a single entity, such as a constant, a
variable, an array element or a reference to a function.
• It may also consist of some combination of such entities,
interconnected by one or more operators.
• Expressions can also represent logical conditions that are either
true or false.
• In C the conditions true and false are represented by the integer
values 1 and 0,respectively
Several simple expressions are shown below.
Structure of c_program_to_input_output
Structure of c_program_to_input_output
OPERATORS
Arithmetic Operators
There are five arithmetic operators in C. They are
The % operator is sometimes referred to as the modulus operator.
There is no exponentiation operator in C.
There is a library finction (POW) to carry out Exponentiation.
Points to Remember
• The operands acted upon by arithmetic operators must represent
numeric values
• Operands can be integer quantities, floating-point quantities
• The remainder operator (%) requires that both operands be
integers and the second operand be nonzero.
• Division operator (/) requires that the second operand be
nonzero.
• Division of one integer quantity by another is referred to as
integer division.
• This operation always results in a truncated quotient (i.e., the
decimal portion of the quotient will be dropped).
• If a division operation is carried out with two floating-point
numbers, or with one floating-point number and one integer, the
result will be a floating-point quotient.
Suppose that a and b are integer variables whose values are 10 and
3, respectively. Several arithmetic expressions involving these
variables are shown below, together with their resulting values.
Now suppose that vl and v2 are floating-point variables whose
values are 12.5 and 2.0, respectively. Several arithmetic
expressions involving these variables are shown below, together
with their resulting values.
Suppose that a and b are integer variables whose values are 11 and
-3, respectively. Several arithmetic expressions involving these
variables are shown below, together with their resulting values.
Let rl and r2 be floating-point variables whose assigned values
are -0.66 and 4.50. Several arithmetic expressions involving these
variables are shown below, together with their resulting values.
Unary Operators
C includes a class of operators that act upon a single operand to
produce a new value. Such operators are known as unary
operators.
Unary operators usually precede their single operands, though
some unary operators are written after their operands.
Perhaps the most common unary operation is unary minus,
where a numerical constant, variable or expression is preceded
by a minus sign.
Relational And Logical Operators
Equality Operators,
Suppose that i, j and k are integer variables whose values are 1, 2 and
3, respectively. Several logical expressions involving these variables
are shown below
logical operators / logical connectives
Assignment Operators
There are several different assignment operators in C.
 Used to form assignment expressions
 Assign the value of an expression to an identifier
 The most commonly used assignment operator is =
 identifier = expression
 where identifier generally represents a variable
 expression represents a constant
Some typical assignment expressions that make use of the =
operator
In the following assignment expressions, suppose that i is an
integer-type variable.
Now suppose that i and j are both integer-type variables, and that j
has been assigned a value of 5. Several assignment expressions that
make use of these two variables are shown below.
Multiple assignments
Assignments Are Carried Out From Right To Left
Above assignment equivalent to
Suppose that i and j are integer variables. The multiple
assignment expression will cause the integer value 5 to be
assigned to both i and j . (To be more precise, 5 is first assigned
to j , and the value of j is then assigned to i.) Similarly, the
multiple assignment expression i = j = 5.9 ,will cause the integer
value 5 to be assigned to both i and j .
Additional Assignment Operators
The assignment expression
is equivalent to
The assignment expression
is equivalent to
expression 1 is an identifier, such as a variable or an array element
Suppose that i and j are integer variables whose values are 5 and 7,
and f and g are floating-point variables whose values are 5.5 and -
3.25. Several assignment expressions that make use of these
variables are shown below. Each expression utilizes the original
values of i, j , f and g
The Conditional operator
 Simple conditional operations can be carried out with the
conditional operator (? :).
 An expression that makes use of the conditional operator is
called a conditional expression.
 A conditional expression is written in the form
When evaluating a conditional expression, expression 1 is evaluated
first. If expression 1 is true (i.e., if its value is nonzero), then
expression 2 is evaluated and this becomes the value of the
conditional expression. However, if expression 1 is false (i.e., if its
value is zero), then expression 3 is evaluated and this becomes the
value of the conditional expression.
In the conditional expression shown below, assume that i is an
integer variable.
The expression (i < 0) is evaluated first. If it is true, the entire
conditional expression takes on the value 0. Otherwise ,the entire
conditional expression takes on the value 100.
In the following conditional expression, assume that f and g are
floating-point variables.
This conditional expression takes on the value off f if it is less than
g; otherwise, the conditional expression takes on the value of g. In
other words, the conditional expression returns the value of the
smaller of the two variables.
Structure of c_program_to_input_output
Structure of c_program_to_input_output
Structure of c_program_to_input_output
Structure of c_program_to_input_output
Structure of c_program_to_input_output
Structure of c_program_to_input_output
Structure of c_program_to_input_output
Structure of c_program_to_input_output
Structure of c_program_to_input_output
Input/output Statements
The Functions permits the transfer of information between the
computer and the standard input/output devices e.g., a keyboard
and a TV monitor
These six are as follows:
1. getchar
2. putchar
3. scanf
4. printf
5. gets
6. Puts
 The header file required by the standard input/output library
functions is called stdio .h
1. SINGLE CHARACTER INPUT -THE getchar FUNCTION
getchar function is a part of the standard C I/O library
It returns a single character from a standard input device
(typically a keyboard)
The function does not require any arguments, though a pair of
empty parentheses must follow the word getchar
In general terms, a function reference would be written as
character variable = getchar ( ) ;
where character variable refers to some previously declared
character variable.
A C program contains the following statements
char c;
. . . . .
c = getchar();
 The first statement declares that c is a character-type variable
 The second statement causes a single character to be entered
from the standard input device (usually a keyboard)
 Then assigned to c
SINGLE CHARACTER OUTPUT -THE putchar FUNCTION
 Single characters can be displayed i.e., written out of the computer
using the C library function putchar
 It is complementary to the character input function getchar
 It is a part of the standard C I/O library
 It transmits a single character to a standard output device (typically a
TV monitor)
 It must be expressed as an argument to the function, enclosed in
parentheses, following the word putchar
 In general, a function reference would be written as
putchar ( character variable)
 where character variable refers to some previously declared
character variable
A C program contains the following statements
char c;
. . . . .
putchar(c);
 The first statement declares that c is a character-type variable
 The second statement causes the current value of c to be
transmitted to the standard output device (e.g., a TV monitor)
where it will be displayed.
EXAMPLE Lowercase to Uppercase Text Conversion
ENTERING INPUT DATA -THE scanf FUNCTION
 This function can be used to enter any combination of
numerical values ,single characters and strings.
 The function returns the number of data items
 that have been entered successfully
 where control string refers to a string containing certain required
formatting information
 arg1, arg2, . . . argn are arguments that represent the individual
input data items
 The control string consists of individual groups of characters, with
one character group for each input data item
 a single character group will consist of the percent sign, followed
by a conversion character which indicates the type of the
corresponding data item
Commonly Used Conversion Characters for Data Input
 The arguments are written as variables or arrays, whose types
match the corresponding character groups in the control string
 Each variable name must be preceded by an ampersand (a). (The
arguments are actually pointers that indicate where the data items
are stored in the computer's memory
Here is a typical application of a scanf function.
WRITING OUTPUT DATA -THE printf FUNCTION
 Output data can be written from the computer onto a standard
output device using the library function printf
 This function can be used to output any combination of numerical
values, single characters and strings
 In general terms, the printf function is written as
 where control string refers to a string that contains formatting
information,
 and arg7, arg2, . . . , argn are arguments that represent the individual
output data items.
 The arguments can be written as constants, single variable or array
names, or more complex expressions.
 Function references may also be included.
 In a printf function do not represent memory addresses and therefore
are not preceded by ampersands.
 The control string consists of individual groups of characters, with
one character group for each output data item.
 Each character group must begin with a percent sign (%). In its
simplest form,
 An individual character group will consist of the percent sign,
followed by a conversion character indicating the type of the
corresponding data item.
Commonly Used Conversion Characters for Data Output
Here is a simple program that makes use of the printf function.
Notice that the first two arguments within the printf function are
single variables, the third argument is an arithmetic expression,
and the last argument is a function reference that has a numeric
expression as an argument. Executing the program produces the
following output:
2.000000 3.000000 5.000000 2.236068
The following skeletal outline indicates how several different
types of data can be displayed using the printf function
Within the printf function, the control string is "%s %d %f It
contains three character groups. The first character group, %s,
indicates that the first argument (item) represents a string. The
second character group, %indicates that the second argument (part
no) represents a decimal integer value, and the third character group,
%indicates that the third argument (cost) represents a floating-point
value.
Structure of c_program_to_input_output
Structure of c_program_to_input_output
Structure of c_program_to_input_output
Structure of c_program_to_input_output
Structure of c_program_to_input_output
Structure of c_program_to_input_output
Ad

More Related Content

What's hot (20)

Strings
StringsStrings
Strings
Mitali Chugh
 
C Programming: Control Structure
C Programming: Control StructureC Programming: Control Structure
C Programming: Control Structure
Sokngim Sa
 
Branching statements
Branching statementsBranching statements
Branching statements
ArunMK17
 
Break and continue
Break and continueBreak and continue
Break and continue
Frijo Francis
 
Conditional Statement in C Language
Conditional Statement in C LanguageConditional Statement in C Language
Conditional Statement in C Language
Shaina Arora
 
Managing input and output operation in c
Managing input and output operation in cManaging input and output operation in c
Managing input and output operation in c
yazad dumasia
 
Strings
StringsStrings
Strings
Nilesh Dalvi
 
Strings IN C
Strings IN CStrings IN C
Strings IN C
yndaravind
 
Strings in c++
Strings in c++Strings in c++
Strings in c++
Neeru Mittal
 
data types in C programming
data types in C programmingdata types in C programming
data types in C programming
Harshita Yadav
 
Super Keyword in Java.pptx
Super Keyword in Java.pptxSuper Keyword in Java.pptx
Super Keyword in Java.pptx
KrutikaWankhade1
 
CONDITIONAL STATEMENT IN C LANGUAGE
CONDITIONAL STATEMENT IN C LANGUAGECONDITIONAL STATEMENT IN C LANGUAGE
CONDITIONAL STATEMENT IN C LANGUAGE
Ideal Eyes Business College
 
Strings Functions in C Programming
Strings Functions in C ProgrammingStrings Functions in C Programming
Strings Functions in C Programming
DevoAjit Gupta
 
Data Types and Variables In C Programming
Data Types and Variables In C ProgrammingData Types and Variables In C Programming
Data Types and Variables In C Programming
Kamal Acharya
 
Strings in C language
Strings in C languageStrings in C language
Strings in C language
P M Patil
 
Constructors in C++
Constructors in C++Constructors in C++
Constructors in C++
RubaNagarajan
 
Exception handling c++
Exception handling c++Exception handling c++
Exception handling c++
Jayant Dalvi
 
Functions in c language
Functions in c language Functions in c language
Functions in c language
tanmaymodi4
 
Control statements in c
Control statements in cControl statements in c
Control statements in c
Sathish Narayanan
 
Functions in c++
Functions in c++Functions in c++
Functions in c++
Rokonuzzaman Rony
 
C Programming: Control Structure
C Programming: Control StructureC Programming: Control Structure
C Programming: Control Structure
Sokngim Sa
 
Branching statements
Branching statementsBranching statements
Branching statements
ArunMK17
 
Conditional Statement in C Language
Conditional Statement in C LanguageConditional Statement in C Language
Conditional Statement in C Language
Shaina Arora
 
Managing input and output operation in c
Managing input and output operation in cManaging input and output operation in c
Managing input and output operation in c
yazad dumasia
 
data types in C programming
data types in C programmingdata types in C programming
data types in C programming
Harshita Yadav
 
Super Keyword in Java.pptx
Super Keyword in Java.pptxSuper Keyword in Java.pptx
Super Keyword in Java.pptx
KrutikaWankhade1
 
Strings Functions in C Programming
Strings Functions in C ProgrammingStrings Functions in C Programming
Strings Functions in C Programming
DevoAjit Gupta
 
Data Types and Variables In C Programming
Data Types and Variables In C ProgrammingData Types and Variables In C Programming
Data Types and Variables In C Programming
Kamal Acharya
 
Strings in C language
Strings in C languageStrings in C language
Strings in C language
P M Patil
 
Exception handling c++
Exception handling c++Exception handling c++
Exception handling c++
Jayant Dalvi
 
Functions in c language
Functions in c language Functions in c language
Functions in c language
tanmaymodi4
 

Viewers also liked (20)

Structure of a C program
Structure of a C programStructure of a C program
Structure of a C program
David Livingston J
 
C material
C materialC material
C material
tarique472
 
Basics of C programming
Basics of C programmingBasics of C programming
Basics of C programming
avikdhupar
 
C LANGUAGE - BESTECH SOLUTIONS
C LANGUAGE - BESTECH SOLUTIONSC LANGUAGE - BESTECH SOLUTIONS
C LANGUAGE - BESTECH SOLUTIONS
BESTECH SOLUTIONS
 
Introduction to C programming
Introduction to C programmingIntroduction to C programming
Introduction to C programming
Rutvik Pensionwar
 
Structure in C
Structure in CStructure in C
Structure in C
Fazle Rabbi Ador
 
Overview of c language
Overview of c languageOverview of c language
Overview of c language
shalini392
 
INTRODUCTION TO C PROGRAMMING
INTRODUCTION TO C PROGRAMMINGINTRODUCTION TO C PROGRAMMING
INTRODUCTION TO C PROGRAMMING
Abhishek Dwivedi
 
C language ppt
C language pptC language ppt
C language ppt
Ğäùråv Júñêjå
 
Btech i pic u-1 introduction to c language
Btech i pic u-1 introduction to c languageBtech i pic u-1 introduction to c language
Btech i pic u-1 introduction to c language
Rai University
 
UNIX introduction
UNIX introductionUNIX introduction
UNIX introduction
MUFIX Community
 
Structure c
Structure cStructure c
Structure c
thirumalaikumar3
 
Unix Introduction
Unix IntroductionUnix Introduction
Unix Introduction
Ananthi
 
Linking in MS-Dos System
Linking in MS-Dos SystemLinking in MS-Dos System
Linking in MS-Dos System
Satyamevjayte Haxor
 
File handling-dutt
File handling-duttFile handling-dutt
File handling-dutt
Anil Dutt
 
C chap02
C chap02C chap02
C chap02
Kamran
 
Data structures using C
Data structures using CData structures using C
Data structures using C
Pdr Patnaik
 
[UX Project] C-Saw
[UX Project] C-Saw[UX Project] C-Saw
[UX Project] C-Saw
Tzuyea (Zia) Su
 
Input Output Management In C Programming
Input Output Management In C ProgrammingInput Output Management In C Programming
Input Output Management In C Programming
Kamal Acharya
 
Structure in c
Structure in cStructure in c
Structure in c
baabtra.com - No. 1 supplier of quality freshers
 
Ad

Similar to Structure of c_program_to_input_output (20)

Module 1:Introduction
Module 1:IntroductionModule 1:Introduction
Module 1:Introduction
nikshaikh786
 
Constants Variables Datatypes by Mrs. Sowmya Jyothi
Constants Variables Datatypes by Mrs. Sowmya JyothiConstants Variables Datatypes by Mrs. Sowmya Jyothi
Constants Variables Datatypes by Mrs. Sowmya Jyothi
SowmyaJyothi3
 
Constant, variables, data types
Constant, variables, data typesConstant, variables, data types
Constant, variables, data types
Pratik Devmurari
 
Data type
Data typeData type
Data type
Isha Aggarwal
 
C programming tutorial
C programming tutorialC programming tutorial
C programming tutorial
Mohit Saini
 
Chap 1 and 2
Chap 1 and 2Chap 1 and 2
Chap 1 and 2
Selva Arrunaa Mathavan
 
Lamborghini Veneno Allegheri #2004@f**ck
Lamborghini Veneno Allegheri #2004@f**ckLamborghini Veneno Allegheri #2004@f**ck
Lamborghini Veneno Allegheri #2004@f**ck
seidounsemel
 
PPS_unit_2_gtu_sem_2_year_2023_GTUU.pptx
PPS_unit_2_gtu_sem_2_year_2023_GTUU.pptxPPS_unit_2_gtu_sem_2_year_2023_GTUU.pptx
PPS_unit_2_gtu_sem_2_year_2023_GTUU.pptx
ZwecklosSe
 
C tokens.pptx
C tokens.pptxC tokens.pptx
C tokens.pptx
NavyaParashir
 
Constants variables data_types
Constants variables data_typesConstants variables data_types
Constants variables data_types
NAVEEN SHARMA'S CLASSROOM
 
Bsc cs i pic u-2 datatypes and variables in c language
Bsc cs i pic u-2 datatypes and variables in c languageBsc cs i pic u-2 datatypes and variables in c language
Bsc cs i pic u-2 datatypes and variables in c language
Rai University
 
lec 2.pptx
lec 2.pptxlec 2.pptx
lec 2.pptx
AhsanAli64749
 
datatypes and variables in c language
 datatypes and variables in c language datatypes and variables in c language
datatypes and variables in c language
Rai University
 
Btech i pic u-2 datatypes and variables in c language
Btech i pic u-2 datatypes and variables in c languageBtech i pic u-2 datatypes and variables in c language
Btech i pic u-2 datatypes and variables in c language
Rai University
 
Mca i pic u-2 datatypes and variables in c language
Mca i pic u-2 datatypes and variables in c languageMca i pic u-2 datatypes and variables in c language
Mca i pic u-2 datatypes and variables in c language
Rai University
 
Diploma ii cfpc u-2 datatypes and variables in c language
Diploma ii  cfpc u-2 datatypes and variables in c languageDiploma ii  cfpc u-2 datatypes and variables in c language
Diploma ii cfpc u-2 datatypes and variables in c language
Rai University
 
FUNDAMENTAL OF C
FUNDAMENTAL OF CFUNDAMENTAL OF C
FUNDAMENTAL OF C
KRUNAL RAVAL
 
INTRODUCTION TO C++.pptx
INTRODUCTION TO C++.pptxINTRODUCTION TO C++.pptx
INTRODUCTION TO C++.pptx
MamataAnilgod
 
CProgrammingTutorial
CProgrammingTutorialCProgrammingTutorial
CProgrammingTutorial
Muthuselvam RS
 
constants, variables and datatypes in C
constants, variables and datatypes in Cconstants, variables and datatypes in C
constants, variables and datatypes in C
Sahithi Naraparaju
 
Module 1:Introduction
Module 1:IntroductionModule 1:Introduction
Module 1:Introduction
nikshaikh786
 
Constants Variables Datatypes by Mrs. Sowmya Jyothi
Constants Variables Datatypes by Mrs. Sowmya JyothiConstants Variables Datatypes by Mrs. Sowmya Jyothi
Constants Variables Datatypes by Mrs. Sowmya Jyothi
SowmyaJyothi3
 
Constant, variables, data types
Constant, variables, data typesConstant, variables, data types
Constant, variables, data types
Pratik Devmurari
 
C programming tutorial
C programming tutorialC programming tutorial
C programming tutorial
Mohit Saini
 
Lamborghini Veneno Allegheri #2004@f**ck
Lamborghini Veneno Allegheri #2004@f**ckLamborghini Veneno Allegheri #2004@f**ck
Lamborghini Veneno Allegheri #2004@f**ck
seidounsemel
 
PPS_unit_2_gtu_sem_2_year_2023_GTUU.pptx
PPS_unit_2_gtu_sem_2_year_2023_GTUU.pptxPPS_unit_2_gtu_sem_2_year_2023_GTUU.pptx
PPS_unit_2_gtu_sem_2_year_2023_GTUU.pptx
ZwecklosSe
 
Bsc cs i pic u-2 datatypes and variables in c language
Bsc cs i pic u-2 datatypes and variables in c languageBsc cs i pic u-2 datatypes and variables in c language
Bsc cs i pic u-2 datatypes and variables in c language
Rai University
 
datatypes and variables in c language
 datatypes and variables in c language datatypes and variables in c language
datatypes and variables in c language
Rai University
 
Btech i pic u-2 datatypes and variables in c language
Btech i pic u-2 datatypes and variables in c languageBtech i pic u-2 datatypes and variables in c language
Btech i pic u-2 datatypes and variables in c language
Rai University
 
Mca i pic u-2 datatypes and variables in c language
Mca i pic u-2 datatypes and variables in c languageMca i pic u-2 datatypes and variables in c language
Mca i pic u-2 datatypes and variables in c language
Rai University
 
Diploma ii cfpc u-2 datatypes and variables in c language
Diploma ii  cfpc u-2 datatypes and variables in c languageDiploma ii  cfpc u-2 datatypes and variables in c language
Diploma ii cfpc u-2 datatypes and variables in c language
Rai University
 
INTRODUCTION TO C++.pptx
INTRODUCTION TO C++.pptxINTRODUCTION TO C++.pptx
INTRODUCTION TO C++.pptx
MamataAnilgod
 
constants, variables and datatypes in C
constants, variables and datatypes in Cconstants, variables and datatypes in C
constants, variables and datatypes in C
Sahithi Naraparaju
 
Ad

Recently uploaded (20)

Oil-gas_Unconventional oil and gass_reseviours.pdf
Oil-gas_Unconventional oil and gass_reseviours.pdfOil-gas_Unconventional oil and gass_reseviours.pdf
Oil-gas_Unconventional oil and gass_reseviours.pdf
M7md3li2
 
15th International Conference on Computer Science, Engineering and Applicatio...
15th International Conference on Computer Science, Engineering and Applicatio...15th International Conference on Computer Science, Engineering and Applicatio...
15th International Conference on Computer Science, Engineering and Applicatio...
IJCSES Journal
 
DT REPORT by Tech titan GROUP to introduce the subject design Thinking
DT REPORT by Tech titan GROUP to introduce the subject design ThinkingDT REPORT by Tech titan GROUP to introduce the subject design Thinking
DT REPORT by Tech titan GROUP to introduce the subject design Thinking
DhruvChotaliya2
 
211421893-M-Tech-CIVIL-Structural-Engineering-pdf.pdf
211421893-M-Tech-CIVIL-Structural-Engineering-pdf.pdf211421893-M-Tech-CIVIL-Structural-Engineering-pdf.pdf
211421893-M-Tech-CIVIL-Structural-Engineering-pdf.pdf
inmishra17121973
 
QA/QC Manager (Quality management Expert)
QA/QC Manager (Quality management Expert)QA/QC Manager (Quality management Expert)
QA/QC Manager (Quality management Expert)
rccbatchplant
 
AI-assisted Software Testing (3-hours tutorial)
AI-assisted Software Testing (3-hours tutorial)AI-assisted Software Testing (3-hours tutorial)
AI-assisted Software Testing (3-hours tutorial)
Vəhid Gəruslu
 
Level 1-Safety.pptx Presentation of Electrical Safety
Level 1-Safety.pptx Presentation of Electrical SafetyLevel 1-Safety.pptx Presentation of Electrical Safety
Level 1-Safety.pptx Presentation of Electrical Safety
JoseAlbertoCariasDel
 
Machine learning project on employee attrition detection using (2).pptx
Machine learning project on employee attrition detection using (2).pptxMachine learning project on employee attrition detection using (2).pptx
Machine learning project on employee attrition detection using (2).pptx
rajeswari89780
 
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptxLidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
RishavKumar530754
 
"Boiler Feed Pump (BFP): Working, Applications, Advantages, and Limitations E...
"Boiler Feed Pump (BFP): Working, Applications, Advantages, and Limitations E..."Boiler Feed Pump (BFP): Working, Applications, Advantages, and Limitations E...
"Boiler Feed Pump (BFP): Working, Applications, Advantages, and Limitations E...
Infopitaara
 
Explainable-Artificial-Intelligence-XAI-A-Deep-Dive (1).pptx
Explainable-Artificial-Intelligence-XAI-A-Deep-Dive (1).pptxExplainable-Artificial-Intelligence-XAI-A-Deep-Dive (1).pptx
Explainable-Artificial-Intelligence-XAI-A-Deep-Dive (1).pptx
MahaveerVPandit
 
Metal alkyne complexes.pptx in chemistry
Metal alkyne complexes.pptx in chemistryMetal alkyne complexes.pptx in chemistry
Metal alkyne complexes.pptx in chemistry
mee23nu
 
Compiler Design Unit1 PPT Phases of Compiler.pptx
Compiler Design Unit1 PPT Phases of Compiler.pptxCompiler Design Unit1 PPT Phases of Compiler.pptx
Compiler Design Unit1 PPT Phases of Compiler.pptx
RushaliDeshmukh2
 
Smart_Storage_Systems_Production_Engineering.pptx
Smart_Storage_Systems_Production_Engineering.pptxSmart_Storage_Systems_Production_Engineering.pptx
Smart_Storage_Systems_Production_Engineering.pptx
rushikeshnavghare94
 
RICS Membership-(The Royal Institution of Chartered Surveyors).pdf
RICS Membership-(The Royal Institution of Chartered Surveyors).pdfRICS Membership-(The Royal Institution of Chartered Surveyors).pdf
RICS Membership-(The Royal Institution of Chartered Surveyors).pdf
MohamedAbdelkader115
 
Mathematical foundation machine learning.pdf
Mathematical foundation machine learning.pdfMathematical foundation machine learning.pdf
Mathematical foundation machine learning.pdf
TalhaShahid49
 
DSP and MV the Color image processing.ppt
DSP and MV the  Color image processing.pptDSP and MV the  Color image processing.ppt
DSP and MV the Color image processing.ppt
HafizAhamed8
 
ELectronics Boards & Product Testing_Shiju.pdf
ELectronics Boards & Product Testing_Shiju.pdfELectronics Boards & Product Testing_Shiju.pdf
ELectronics Boards & Product Testing_Shiju.pdf
Shiju Jacob
 
new ppt artificial intelligence historyyy
new ppt artificial intelligence historyyynew ppt artificial intelligence historyyy
new ppt artificial intelligence historyyy
PianoPianist
 
Process Parameter Optimization for Minimizing Springback in Cold Drawing Proc...
Process Parameter Optimization for Minimizing Springback in Cold Drawing Proc...Process Parameter Optimization for Minimizing Springback in Cold Drawing Proc...
Process Parameter Optimization for Minimizing Springback in Cold Drawing Proc...
Journal of Soft Computing in Civil Engineering
 
Oil-gas_Unconventional oil and gass_reseviours.pdf
Oil-gas_Unconventional oil and gass_reseviours.pdfOil-gas_Unconventional oil and gass_reseviours.pdf
Oil-gas_Unconventional oil and gass_reseviours.pdf
M7md3li2
 
15th International Conference on Computer Science, Engineering and Applicatio...
15th International Conference on Computer Science, Engineering and Applicatio...15th International Conference on Computer Science, Engineering and Applicatio...
15th International Conference on Computer Science, Engineering and Applicatio...
IJCSES Journal
 
DT REPORT by Tech titan GROUP to introduce the subject design Thinking
DT REPORT by Tech titan GROUP to introduce the subject design ThinkingDT REPORT by Tech titan GROUP to introduce the subject design Thinking
DT REPORT by Tech titan GROUP to introduce the subject design Thinking
DhruvChotaliya2
 
211421893-M-Tech-CIVIL-Structural-Engineering-pdf.pdf
211421893-M-Tech-CIVIL-Structural-Engineering-pdf.pdf211421893-M-Tech-CIVIL-Structural-Engineering-pdf.pdf
211421893-M-Tech-CIVIL-Structural-Engineering-pdf.pdf
inmishra17121973
 
QA/QC Manager (Quality management Expert)
QA/QC Manager (Quality management Expert)QA/QC Manager (Quality management Expert)
QA/QC Manager (Quality management Expert)
rccbatchplant
 
AI-assisted Software Testing (3-hours tutorial)
AI-assisted Software Testing (3-hours tutorial)AI-assisted Software Testing (3-hours tutorial)
AI-assisted Software Testing (3-hours tutorial)
Vəhid Gəruslu
 
Level 1-Safety.pptx Presentation of Electrical Safety
Level 1-Safety.pptx Presentation of Electrical SafetyLevel 1-Safety.pptx Presentation of Electrical Safety
Level 1-Safety.pptx Presentation of Electrical Safety
JoseAlbertoCariasDel
 
Machine learning project on employee attrition detection using (2).pptx
Machine learning project on employee attrition detection using (2).pptxMachine learning project on employee attrition detection using (2).pptx
Machine learning project on employee attrition detection using (2).pptx
rajeswari89780
 
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptxLidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
RishavKumar530754
 
"Boiler Feed Pump (BFP): Working, Applications, Advantages, and Limitations E...
"Boiler Feed Pump (BFP): Working, Applications, Advantages, and Limitations E..."Boiler Feed Pump (BFP): Working, Applications, Advantages, and Limitations E...
"Boiler Feed Pump (BFP): Working, Applications, Advantages, and Limitations E...
Infopitaara
 
Explainable-Artificial-Intelligence-XAI-A-Deep-Dive (1).pptx
Explainable-Artificial-Intelligence-XAI-A-Deep-Dive (1).pptxExplainable-Artificial-Intelligence-XAI-A-Deep-Dive (1).pptx
Explainable-Artificial-Intelligence-XAI-A-Deep-Dive (1).pptx
MahaveerVPandit
 
Metal alkyne complexes.pptx in chemistry
Metal alkyne complexes.pptx in chemistryMetal alkyne complexes.pptx in chemistry
Metal alkyne complexes.pptx in chemistry
mee23nu
 
Compiler Design Unit1 PPT Phases of Compiler.pptx
Compiler Design Unit1 PPT Phases of Compiler.pptxCompiler Design Unit1 PPT Phases of Compiler.pptx
Compiler Design Unit1 PPT Phases of Compiler.pptx
RushaliDeshmukh2
 
Smart_Storage_Systems_Production_Engineering.pptx
Smart_Storage_Systems_Production_Engineering.pptxSmart_Storage_Systems_Production_Engineering.pptx
Smart_Storage_Systems_Production_Engineering.pptx
rushikeshnavghare94
 
RICS Membership-(The Royal Institution of Chartered Surveyors).pdf
RICS Membership-(The Royal Institution of Chartered Surveyors).pdfRICS Membership-(The Royal Institution of Chartered Surveyors).pdf
RICS Membership-(The Royal Institution of Chartered Surveyors).pdf
MohamedAbdelkader115
 
Mathematical foundation machine learning.pdf
Mathematical foundation machine learning.pdfMathematical foundation machine learning.pdf
Mathematical foundation machine learning.pdf
TalhaShahid49
 
DSP and MV the Color image processing.ppt
DSP and MV the  Color image processing.pptDSP and MV the  Color image processing.ppt
DSP and MV the Color image processing.ppt
HafizAhamed8
 
ELectronics Boards & Product Testing_Shiju.pdf
ELectronics Boards & Product Testing_Shiju.pdfELectronics Boards & Product Testing_Shiju.pdf
ELectronics Boards & Product Testing_Shiju.pdf
Shiju Jacob
 
new ppt artificial intelligence historyyy
new ppt artificial intelligence historyyynew ppt artificial intelligence historyyy
new ppt artificial intelligence historyyy
PianoPianist
 

Structure of c_program_to_input_output

  • 1. Topics To Be Covered  Structure Of C Program  Identifiers  Basic Data Types And Sizes  Constants  Variables  Expressions  Operators  Input/output Statements
  • 2. Structure of a C Program Every C program consists of one or more modules called functions. One of the functions must be called main. The program will always begin by executing the main function Each function must contain: 1. A function heading, which consists of the function name, followed by an optional list of arguments, 1. A list of argument declarations, if arguments are included 3. A compound statement, which comprises the remainder of the function. • Each compound statement is enclosed within a pair of braces, { }. • Compound statements may be nested, one within another • Each expression statement must end with a semicolon (; )
  • 3. Example Use Of Comments
  • 4. The comments at the end of each line have been added in order to emphasize the overall program organization Normally a C program will not look like this. Rather, it might appear as shown below. Execution of the program results in an interactive dialog such as that shown below. The user's response is underlined, for clarity. Radius = 7 3 Area = 28.274309
  • 5. IDENTIFIERS AND KEYWORDS  identifiers are names that are given to various program elements, such as variables, functions and arrays.  Identifiers consist of letters and digits, in any order, except that the first character must be a letter.  Both upper- and lowercase letters are permitted, though common usage favors the use of lowercase letters for most  Types of identifiers. Upper- and lowercase letters are not interchangeable  The underscore character ( - ) can also be included, and is considered to be a letter.  An underscore is often used in the middle of an identifier.  An identifier may also begin with an underscore, though this is rarely done in practice.
  • 6. The following names are not valid identifiers ,For the reasons stated. The following names are not valid identifiers For the reasons stated.
  • 7. Some Other Points About Identifiers  The identifiers file-manager and file-management are both grammatically valid. Some compilers may be unable to distinguish between them, however, because the first eight letters are the same for each identifier. Therefore, only one of these identifiers should be used in a single C program.  As a rule, an identifier should contain enough characters so that its meaning is readily apparent.  On the other hand, an excessive number of characters should be avoided.  A C program is being written to calculate the future value of an investment. The identifiers value or future-value are appropriate symbolic names. However, v or fv would probably be too brief, since the intended representation of these identifiers is not clear. On the other hand, the identifier future-value-of-an-investment would be unsatisfactory because it is too long
  • 8. Keywords • There are certain reserved words, called keywords, that have standard, predefined meanings in C. • These keywords can be used only for their intended purpose; • They cannot be used as programmer-defined identifiers.
  • 9. • The standard keywords are Some compilers also include some or all of the following keywords.
  • 10. DATA TYPES • C supports several different types of data • Each may be represented differently within the computer’s memory • The basic data types are listed below (Next Slide). • Typical memory requirements are also given • The memory requirements determine the permissible range of values • • Note that the memory requirements for each data type may vary from one C compiler to another
  • 11. C compilers written for personal computers or small minicomputers (i.e., computers whose natural word size is less than 32 bits) generally represent a word as 4 bytes (32 bits)
  • 12. Points to Remember • The basic data types can be augmented by the use of the data type qualijiers short , long, signed and unsigned. • Integer can be defined as short int , long int or unsigned int • Usually written simply as short , long or unsigned • The interpretation of integer data type will vary from one C compiler to another • A short int may require less or same memory than an ordinary int but it will never exceed an ordinary int in word length. • A long int may require the same amount of memory as an ordinary in t or it may require more memory, but it will never be less than an ordinary int . • If short int and int both have the same memory requirements (e.g., 2 bytes), then long int will generally have double the requirements (e.g., 4 bytes)
  • 13. Points to Remember • If int and long int both have the same memory requirements (e.g., 4 bytes) then short int will generally have half the memory requirements (e.g., 2 bytes) • An unsigned int has the same memory requirements as an ordinary i n t . However, in the case of an ordinary int , the leftmost bit is reserved for the sign. • With an unsigned int , all of the bits are used to represent the numerical value. Thus, an unsigned int can be approximately twice as large as an ordinary int (though, of course, negative values are not permitted). • For example, if an ordinary int can vary from -32,768 to +32,767 (which is typical for a 2-byte int ) , then an unsigned int will be allowed to vary from 0 to 65,535. The unsigned qualifier can also be applied to other qualified int
  • 14. CONSTANTS There are four basic types of constants in C. 1. Integer constants, 2. Floating-point constants 3. Character constants 4. String constants Integer and floating-point constants represent numbers. They are often referred to collectively as numeric-type constants. The following rules apply to all numeric-type constants.  Commas and blank spaces cannot be included within  The constant can be preceded by a minus (-) sign if desired  The value of a constant cannot exceed specified minimum and maximum bounds.
  • 15. Integer Constants • An integer constant is an integer-valued number. • It consists of a sequence of digits. • Integer constants can be written in three different number systems: decimal (base lO), octal (base 8) and hexadecimal (base 16). • A decimal integer constant can consist of any combination of digits taken from the set 0 through 9. • If the constant contains two or more digits, the first digit must be something other than 0.
  • 17. Octal Integer Constant An octal integer constant can consist of any combination of digits taken from the set 0 through 7. However the first digit must be 0,in order to identify the constant as an octal number.
  • 18. Hexadecimal Integer Constant A hexadecimal integer constant must begin with either Ox or OX. It can then be followed by any combination of digits taken from the sets 0 through 9 and a through f (either upper- or lowercase). Note that the letters a through f (or A through F) represent the (decimal) quantities 10 through 15, respectively.
  • 19. Unsigned and Long Integer Constants  Unsigned integer constants may exceed the magnitude of ordinary integer constants by approximately a factor of 2, though they may not be negative.* An unsigned integer constant can be identified by appending the letter U (either upper- or lowercase) to the end of the constant.  Long integer constants may exceed the magnitude of ordinary integer constants, to create a long integer constant by appending the letter L (either upper- or lowercase) to the end of the constant. An unsigned long integer may be specified by appending the letters UL to the end of the constant. The letters may be written in either upper- or lowercase. However, the U must precede the L.
  • 21. Floating-Point Constants A floating-point constant is a base- 10 number that contains either a decimal point or an exponent (or both).
  • 22. Character Constants A character constant is a single character, enclosed in apostrophes (i.e., single quotation marks). Several character constants are shown below. Escape Sequences Certain nonprinting characters, as well as the backslash () and the apostrophe (‘’ ), can be expressed in terms of escape sequences. An escape sequence always begins with a backward slash and is followed by one or more special characters.
  • 23. The commonly used escape sequences are listed below.
  • 24. String Constants A string constant consists of any number of consecutive characters (including none), enclosed in double quotation marks. Several string constants are shown below. Note that the string constant "Line 1n Line 2n Line 3" extends over three lines, because of the newline characters that are embedded within the string. Thus, this string would be displayed as Line 1 Line 2 Line 3 Also, notice that the string “ ” is a null (empty) string
  • 25. EXPRESSIONS • An expression represents a single data item, such as a number or a character. • The expression may consist of a single entity, such as a constant, a variable, an array element or a reference to a function. • It may also consist of some combination of such entities, interconnected by one or more operators. • Expressions can also represent logical conditions that are either true or false. • In C the conditions true and false are represented by the integer values 1 and 0,respectively
  • 26. Several simple expressions are shown below.
  • 29. OPERATORS Arithmetic Operators There are five arithmetic operators in C. They are The % operator is sometimes referred to as the modulus operator. There is no exponentiation operator in C. There is a library finction (POW) to carry out Exponentiation.
  • 30. Points to Remember • The operands acted upon by arithmetic operators must represent numeric values • Operands can be integer quantities, floating-point quantities • The remainder operator (%) requires that both operands be integers and the second operand be nonzero. • Division operator (/) requires that the second operand be nonzero. • Division of one integer quantity by another is referred to as integer division. • This operation always results in a truncated quotient (i.e., the decimal portion of the quotient will be dropped). • If a division operation is carried out with two floating-point numbers, or with one floating-point number and one integer, the result will be a floating-point quotient.
  • 31. Suppose that a and b are integer variables whose values are 10 and 3, respectively. Several arithmetic expressions involving these variables are shown below, together with their resulting values.
  • 32. Now suppose that vl and v2 are floating-point variables whose values are 12.5 and 2.0, respectively. Several arithmetic expressions involving these variables are shown below, together with their resulting values.
  • 33. Suppose that a and b are integer variables whose values are 11 and -3, respectively. Several arithmetic expressions involving these variables are shown below, together with their resulting values.
  • 34. Let rl and r2 be floating-point variables whose assigned values are -0.66 and 4.50. Several arithmetic expressions involving these variables are shown below, together with their resulting values.
  • 35. Unary Operators C includes a class of operators that act upon a single operand to produce a new value. Such operators are known as unary operators. Unary operators usually precede their single operands, though some unary operators are written after their operands. Perhaps the most common unary operation is unary minus, where a numerical constant, variable or expression is preceded by a minus sign.
  • 36. Relational And Logical Operators Equality Operators,
  • 37. Suppose that i, j and k are integer variables whose values are 1, 2 and 3, respectively. Several logical expressions involving these variables are shown below logical operators / logical connectives
  • 38. Assignment Operators There are several different assignment operators in C.  Used to form assignment expressions  Assign the value of an expression to an identifier  The most commonly used assignment operator is =  identifier = expression  where identifier generally represents a variable  expression represents a constant
  • 39. Some typical assignment expressions that make use of the = operator In the following assignment expressions, suppose that i is an integer-type variable.
  • 40. Now suppose that i and j are both integer-type variables, and that j has been assigned a value of 5. Several assignment expressions that make use of these two variables are shown below.
  • 41. Multiple assignments Assignments Are Carried Out From Right To Left Above assignment equivalent to Suppose that i and j are integer variables. The multiple assignment expression will cause the integer value 5 to be assigned to both i and j . (To be more precise, 5 is first assigned to j , and the value of j is then assigned to i.) Similarly, the multiple assignment expression i = j = 5.9 ,will cause the integer value 5 to be assigned to both i and j .
  • 42. Additional Assignment Operators The assignment expression is equivalent to The assignment expression is equivalent to expression 1 is an identifier, such as a variable or an array element
  • 43. Suppose that i and j are integer variables whose values are 5 and 7, and f and g are floating-point variables whose values are 5.5 and - 3.25. Several assignment expressions that make use of these variables are shown below. Each expression utilizes the original values of i, j , f and g
  • 44. The Conditional operator  Simple conditional operations can be carried out with the conditional operator (? :).  An expression that makes use of the conditional operator is called a conditional expression.  A conditional expression is written in the form When evaluating a conditional expression, expression 1 is evaluated first. If expression 1 is true (i.e., if its value is nonzero), then expression 2 is evaluated and this becomes the value of the conditional expression. However, if expression 1 is false (i.e., if its value is zero), then expression 3 is evaluated and this becomes the value of the conditional expression.
  • 45. In the conditional expression shown below, assume that i is an integer variable. The expression (i < 0) is evaluated first. If it is true, the entire conditional expression takes on the value 0. Otherwise ,the entire conditional expression takes on the value 100. In the following conditional expression, assume that f and g are floating-point variables. This conditional expression takes on the value off f if it is less than g; otherwise, the conditional expression takes on the value of g. In other words, the conditional expression returns the value of the smaller of the two variables.
  • 55. Input/output Statements The Functions permits the transfer of information between the computer and the standard input/output devices e.g., a keyboard and a TV monitor These six are as follows: 1. getchar 2. putchar 3. scanf 4. printf 5. gets 6. Puts  The header file required by the standard input/output library functions is called stdio .h
  • 56. 1. SINGLE CHARACTER INPUT -THE getchar FUNCTION getchar function is a part of the standard C I/O library It returns a single character from a standard input device (typically a keyboard) The function does not require any arguments, though a pair of empty parentheses must follow the word getchar In general terms, a function reference would be written as character variable = getchar ( ) ; where character variable refers to some previously declared character variable.
  • 57. A C program contains the following statements char c; . . . . . c = getchar();  The first statement declares that c is a character-type variable  The second statement causes a single character to be entered from the standard input device (usually a keyboard)  Then assigned to c
  • 58. SINGLE CHARACTER OUTPUT -THE putchar FUNCTION  Single characters can be displayed i.e., written out of the computer using the C library function putchar  It is complementary to the character input function getchar  It is a part of the standard C I/O library  It transmits a single character to a standard output device (typically a TV monitor)  It must be expressed as an argument to the function, enclosed in parentheses, following the word putchar  In general, a function reference would be written as putchar ( character variable)  where character variable refers to some previously declared character variable
  • 59. A C program contains the following statements char c; . . . . . putchar(c);  The first statement declares that c is a character-type variable  The second statement causes the current value of c to be transmitted to the standard output device (e.g., a TV monitor) where it will be displayed.
  • 60. EXAMPLE Lowercase to Uppercase Text Conversion
  • 61. ENTERING INPUT DATA -THE scanf FUNCTION  This function can be used to enter any combination of numerical values ,single characters and strings.  The function returns the number of data items  that have been entered successfully  where control string refers to a string containing certain required formatting information  arg1, arg2, . . . argn are arguments that represent the individual input data items  The control string consists of individual groups of characters, with one character group for each input data item  a single character group will consist of the percent sign, followed by a conversion character which indicates the type of the corresponding data item
  • 62. Commonly Used Conversion Characters for Data Input
  • 63.  The arguments are written as variables or arrays, whose types match the corresponding character groups in the control string  Each variable name must be preceded by an ampersand (a). (The arguments are actually pointers that indicate where the data items are stored in the computer's memory Here is a typical application of a scanf function.
  • 64. WRITING OUTPUT DATA -THE printf FUNCTION  Output data can be written from the computer onto a standard output device using the library function printf  This function can be used to output any combination of numerical values, single characters and strings  In general terms, the printf function is written as
  • 65.  where control string refers to a string that contains formatting information,  and arg7, arg2, . . . , argn are arguments that represent the individual output data items.  The arguments can be written as constants, single variable or array names, or more complex expressions.  Function references may also be included.  In a printf function do not represent memory addresses and therefore are not preceded by ampersands.  The control string consists of individual groups of characters, with one character group for each output data item.  Each character group must begin with a percent sign (%). In its simplest form,  An individual character group will consist of the percent sign, followed by a conversion character indicating the type of the corresponding data item.
  • 66. Commonly Used Conversion Characters for Data Output
  • 67. Here is a simple program that makes use of the printf function. Notice that the first two arguments within the printf function are single variables, the third argument is an arithmetic expression, and the last argument is a function reference that has a numeric expression as an argument. Executing the program produces the following output: 2.000000 3.000000 5.000000 2.236068
  • 68. The following skeletal outline indicates how several different types of data can be displayed using the printf function Within the printf function, the control string is "%s %d %f It contains three character groups. The first character group, %s, indicates that the first argument (item) represents a string. The second character group, %indicates that the second argument (part no) represents a decimal integer value, and the third character group, %indicates that the third argument (cost) represents a floating-point value.