Anda di halaman 1dari 37

Young World Computer Institute C Material

CHAPTER 1- OVERVIEW OF C

History Of C:

1960 ALGOL International Group

1967 BCPL Martin Richards

1970 B Ken Thompson

1972 Traditional C Dennis Ritchie

1978 Kernighan and Ritchie


K&RC

1989 ANSI C ANSI Committee

1990 ANSI/ISO C ISO Committee

What is C?

C is a programming language with a set of built-in functions and operators can be


used to write any complex program.

Compiler combines the capabilities of an assembly language with the features of


high-level language and therefore it is well suited for writing both system software
and business packages.

Features of C:

Program written in C are efficient and fast due to its variety of data types and
powerful operators. It is many times faster than BASIC.
E.g.: Increment of 0 to 15000 takes about 1 sec in C where as BASIC takes
about 50 sec.

C is highly portable. This means that program written on one computer can run
on another computer with little or no modification.

C language is well suited for structured programming, thus requiring the user to
think of a problem in terms of function modules or block.

ANSI C Page No: 1


Young World Computer Institute C Material

Another important feature of C is its ability to extend itself. We can add user
function to C library.

Sample Program:

main( )
{
/* -------- Sample Program ----------
------------------------------------------
*/
printf( WelCome to Young World Computer Institute);
}//End of program

The main ( ) is a special function used by the C system to tell the


computer where the program starts. Every program must have
exactly one main function.

{ indicates beginning of the main function.


} indicates ending of the main function. Statements written between
these two called as function body.

/* */ indicates comment lines. /* starting of the comment line and


*/ indicates ending of the comment line. It can be also called as
Multiple Comment line.
// also indicates comment line. But it is used for single line comment.
So we can call it as single line comment. Comment lines are not
executable statements and therefore anything written with comment
line symbols is ignored by the compiler.

printf( ) is the only executable statement of the program.

The different types of main function:

The main is a part of every C program. C permits different forms of main


statement. Following forms are allowed.

main( )
int main( )
void main( )
main(void)
void main(void)
int main(void)

The empty pair of parentheses indicates that the function has no arguments. This
may be explicitly indicates by using the keyword void inside the parentheses. We

ANSI C Page No: 2


Young World Computer Institute C Material

may also specify the keyword int or void before the word main. The key word
void means that the function does not return any information to the operating
system and int means that the function returns an integer value to the operating
system. When int is specified, the last statement in the program must be return
0.

The #include directives:

As mentioned earlier, C programs are divided into modules or functions. Some


functions are written by the user like us and many others are stored in the C
library. Library functions are grouped category-wise and stored in the library, it is
necessary to tell the compiler about the files to be accessed.
This is achieved by using the preprocessor directives #include as follows:

#include <filename>

Filename is the name of the library file that contains the required function
definition. Preprocessor directives are placed at the beginning of a program.

Basic Structure of C Programs:

Documentation Section
Link Section
Definition Section
Global Declaration Section
main( ) Function Section
{

Declaration Part
Executable Part
}

Subprogram Section

Function 1
Function 2
- (User Defined functions)
-
Function n

ANSI C Page No: 3


Young World Computer Institute C Material

CHAPTER-2 CONSTANTS, VARIABLES, AND DATA TYPES

Character Set:

Letters:
Uppercase : A..Z
Lowercase: az
Digits:
All decimals digits 0.9

Special Characters:

, comma & ampersand


. period ^ caret
; semicolon * asterisk
: colon - minus
? question mark + plus
apostrophe < less than sign
quotation mark > greater than sign
! exclamation mark ( left parenthesis
| vertical bar ) right parenthesis
/ slash [ left bracket
\ backslash ] right bracket
~ tilde { left brace
_ under score } right brace
$ dollar sign # number sign
% percent sign

White Spaces:
Blank space
Horizontal tab
Carriage return
New line
Form feed

ANSI C Keywords:

auto double int struct break else


long switch case enum register typedef
char extern return union const float
short unsigned continue for signed void
default goto sizeof volatile do if
static while

ANSI C Page No: 4


Young World Computer Institute C Material

Constants:

CONSTANTS

Numeric Constant Character constants

Integer Real Single String


Constant constants character constant constants
E.g.: 123,-321,+78 E.g.: 0.0089 +247.0 E.g:5,X, E.g.: Hello
1234,!...?

Declaration of the Variables:

After designing suitable variables names, we must declare them to the compiler.
Declaration does two things:
1. It tells the compiler what the variables name is.
2. It specifies what type of data the variable will hold.
The declaration of variables must be done before they are used in the program.
The syntax for declaring a variable is as follows:

data-type v1, v2,.. , vn;

v1, v2,..,vn are the names of variables. Variables are separated by commas. A
declaration statement must end with semicolon.
E.g.: int count;
int number, total;
double ratio;

Reading Data from Keyboard:

Giving the values to variables is to input data through keyboard using the scanf
function. The general format of scanf is as follows:

ANSI C Page No: 5


Young World Computer Institute C Material

scanf(control string,&variable1, variable2,..);

The control string contains the format of data being received.


The ampersand symbol & before each variable name is an operator that
specifies the variables names address. We must always use this operator,
otherwise unexpected results may occur.
E.g.: scanf(%d,&number);

ANSI C Page No: 6


Young World Computer Institute C Material

CHAPTER-4 OPERATORS AND EXPRESSIONS

C operators can be classified into a number of categories. They include:

1. Arithmetic operator
Operator Meaning
+ Addition or unary plus
- Subtraction or unary minus
* Multiplication
/ Division
% modulo division

2. Relational operator
Operator Meaning
< is less than
> is greater than
<= is less than or equal to
>= is greater than or equal to
== is equal to
!= is not equal to

3. Logical operator

Operator Meaning
&& logical AND
|| logical OR
! logical NOT

4. Assignment operator

= equal is used as an assignment operator


v op = exp;

Shorthand assignment operators


Statement with simple statement with
Assignment operator shorthand operator
a=a+1 a += 1
a=a-1 a-=1
a=a*(n+1) a*=n+1
a=a/(n+1) a/=n+1
a=a%b a%=b

5. Increment and decrement operator

++ for increment

ANSI C Page No: 7


Young World Computer Institute C Material

-- for decrement
The operator ++ adds 1 to operand, while subtract 1.
e.g.: ++m; or m++;
--m; or m--;
++m is equivalent to m=m+1; (or m+=1;)
--m is equivalent to m=m-1; (or m-=1;)

6. Conditional operator

A ternary operator pair ? : I available in C to construct conditional expression of


the form
exp1 ? exp2 : exp3
The operator ? : works as follow:
exp1 is evaluated first. If it is nonzero (true), then the expression exp2 is
evaluated and becomes the value of the expression.
If exp1 us false, exp3 is evaluated and its value becomes the value of the
expression.

7. Bitwise operator

Operator Meaning
& bitwise AND
| bitwise OR
^ bitwise exclusive OR
<< shift left
>> shift right

8. Special operator

The Comma operator (,):


value = (x=10, y=5, x + y);

The sizeof operator:


The sizeof operator is a compile time operator and, when used ith an operand, it
returns the number of bytes the operand occupies. The operand may be a
variable, a constant or a data qualifier.
E.g.: m=sizeof(sum);
n=sizeof(long int);
k=sizeof(235L);

ANSI C Page No: 8


Young World Computer Institute C Material

Type Conversions in expressions:

1. Implicit conversion

C permits mixing of constants and variables of different types in an


expression. C automatically converts any intermediate values to the
proper type so that the expression can be evaluated without loosing and
significance. This automatic conversion is known as implicit conversion.

C uses the rule that, in all expression except assignments, any implicit
type conversions are made from a lower size type to a higher size type as
shown below.

long double
Conversion
Hierarchy double

float

unsigned long int

long int

unsigned int

int

short char

2. Explicit conversion:

There are instances when we want to force a type conversion in way that
is different from the automatic conversion. That type of conversion is
called as Explicit conversion.

Example Action
x=(int) 7.5 7.5 is converted to integer by truncation
a=(int) 21.3/(int)4.5 Evaluated as 21/4 and the result would be 5.
b=(double)sum/n Division is done in floating point mode
y=(int) (a+b) The result of a+b is converted to integer

ANSI C Page No: 9


Young World Computer Institute C Material

Formatted Output:

The printf statement provides certain features that can be effectively exploited to
control the alignment and spacing of print=outs on the terminals. The general
form of printf statement is

printf(control string,arg1, arg2, ., argn);

control string consist of three types of items:

1. Character that will be printed on the screen as they appear.


2. Format specifications that define the outputs format for display of each
item.
3. Escape sequence character such as \n (new line), \t (horizontal tab) and
\b(blank space)

Output of Integer Numbers:

printf(%d,1234)

1 2 3 4

printf(%6d,1234)

1 2 3 4

printf(%2d,1234);

1 2 3 4 pr

printf(6d,1234)

1 2 3 4

printf(%06d,1234)

0 0 1 2 3 4

Output of Real Numbers:

printf(%7.4f,y)

1 2 . 3 4 5 6

ANSI C Page No: 10


Young World Computer Institute C Material

printf(%-7.2f,y)

1 2 . 3 5

printf(%7.2f,.y);

1 2 . 3 5

We use %f for float value, %d for decimal integer value, %c for character value
and %s for string value.

ANSI C Page No: 11


Young World Computer Institute C Material

CHAPTER-4 DECISION MAKING AND BRANCHING

C language processes decision making capabilities by supporting the following


statements.

1. if statement
2. switch statement
3. Conditional operator statement
4. goto statement

Simple if statement:

The general form of a simple if statement is


if (test expression)
{
statement-block;
}
statement-x;

E.g.:


if ( category = = SPORTS)
{
marks = marks + bonus_marks;
}
printf(%f,marks);

The ifelse statement:

if ( test expression)
{
True block statement(s)
}
else
{
false block statement(s)
}
statement x;

e.g.:
..
if ( code = = 1)
{

ANSI C Page No: 12


Young World Computer Institute C Material

boy = boy + 1;
}
else
{
girl = girl + 1;
}
printf(Good Bye);
.
.

Nesting if...else statements:

if (test condition-1)
{
if(test condition-2)
{
statement-1;
}
else
{
statement-2;
}
}
else
{
statement-3;
}
statement-x;

e.g.:

if(gender == f)
{
if(balance > 5000)
{
bonus=0.05*balance;
}
else
{
bonus=0.02*balance;
}
else
{
bonus=0.02*balance;
}
balance = balance + bonus;

ANSI C Page No: 13


Young World Computer Institute C Material

The ifelse ladder:

if ( condition 1)
statement-1;
else if( condition 2)
statement-2;
else if( condition 3)
statement-3;
else
default-statement;
statement-x;

e.g.:
if(marks > 69)
grade=Distinction;
else if(marks > 59)
grade=First Class;
else if(marks > 47)
grade= Second Class;
else if(marks > 34)
grade=Pass Class;
else
grade=Fail;
printf(%s\n,grade);

The switch statement:

C has built-in multi way decision statement known as switch. The switch
statement tests value of a given variable (or expression) against a list of case
values and when a match is found, a block of statement associated with that
case is executed. The general form of switch statement is as shown below:

switch( expression)
{
case value-1 :
block-1;
break;
case value-2 :
block-2;
break;
.
.
case value-n :
block-n;
break;

ANSI C Page No: 14


Young World Computer Institute C Material

default :
default block;
break;
}
statement-x;

e.g.:
switch(code)
{
case 1:
printf(RED);
break;
case 2:
printf(GREEN);
break;
case 3:
printf(BLUE);
break;
default:
printf(YELLOW);
break;
}

Rules for Switch statement:

The switch expression must be an integral type.


case label must be constants or constant expression.
case labels must be unique. No two labels can have the same value.
case labels must end with semicolon.
The break statement transfers the control out of the switch statement.
The break statement is optional. That is, two or more case labels may
belong to the same statements.
The default label is optional. If present, it will be executed when the
expression does not find a matching case label.
There can be at most one default label.
The default may be placed anywhere but placed at the end.
It is permitted to nest switch statement.

The GOTO statement:

C supports the goto statement to branch unconditionally from one point to


another in the program. Although it may not be essential to use the goto
statement in a highly structured language like C. there may be occasions when
the use of goto might be desirable.

ANSI C Page No: 15


Young World Computer Institute C Material

The goto requires a label in order to identify the place where the branch is to be
made. A label is any valid variable name, and must be followed by a colon, The
label is placed immediately before the statement where the control is to be
transferred. The general forms of goto and label statements are shown below:

goto label; label:


statement;
.
..
label:
statement; goto label;
Forward jump Backward jump

e.g.:
main ( )
{
double x, y;
read:
scanf(%f,&x);
if (x < 0)
goto read;
y=sqrt(x);
printf(%f %f\n,x, y);
goto read;
}

ANSI C Page No: 16


Young World Computer Institute C Material

CHAPTER-5 DECISSION MAKING AND LOOPING

A looping process in general, would include the following four steps:

1. Setting and initialization of a condition variables.


2. Execution of the statements in the loop.
3. Test for a specified value of the condition variables for execution of the
loop.
4. Increment or updating the condition variable.

The test may be either to determine whether the loop has been repeated the
specified number of times or to determine whether a particular condition has
been met.

The test conditions should be carefully stated in order to perform the desired
number of loop executions. It is assumed that the test condition will eventually
transfer the control out of the loop. In case, due to some reason it does not do
so, the control sets up an infinite loop and the body is executed over and over
again.

The C language provides for three constructs for performing loop operations.
They are:
1. The while statement.
2. The do statement.
3. The for statement.

Sentinel Loops:

Based on the nature of control variable and the kind of value assigned to it for
testing the control expression, the loops may be classified into two general
categories;
1. Counter-controlled loops.
2. Sentinels-controlled loops.

When we know in advance exactly how many times the loops will be executed,
we use a counter-controlled loop. We use a control variable known as counter.
The counter must be initialized, tested and updated properly for the desired loop
operations. The number of times we want to execute the loop may be a constant
or a variable that is assigned a value. A counter-controlled loop is sometimes
called definite repetition loop.

In a sentinels-controlled loop, a special value called a sentinels value is used to


change the loop control expression from true or false. For example, when
reading data we may indicate the end of data by a special value, like -1 to 999.
The control variable is called sentinels variable. A sentinels-controlled loop is

ANSI C Page No: 17


Young World Computer Institute C Material

often called indefinite repetition loop because the number of repetition is not
known the loop begins executing.

The while statement :

The simplest of all the looping structures in C is the while statement. We have
used while in many of our earlier programs. The basic format of the while
statement is

while(test condition)
{
body of the loop
}

The while is an entry-controlled loop statement. The test-condition is evaluated


and if the condition is true, then the body of the loop is executed. After executing
of the body, the test-condition is once again evaluated and if it is true, the body is
executed once again. This process pf repeated execution of the body continues
until the test-condition finally becomes false and the control is transferred out of
the loop. On exit, the program continues with the statement immediately after the
body of the loop.

e.g.: .

sum=0;
n=1; //Initialization
while( n <= 10) //Testing
{
sum=sum + n*n;
n=n+1; //Increment
}
printf(Sum=%d\n,sum);
.
..

The do statement:

The while loop construct that we have discussed a test of condition before the
loop is executed. Therefore, the body of the loop may not be executed at all if the
condition is not satisfied at the very first attempt. On some occasions it might be
necessary to execute the body of the loop before the test is performed. Such
situation can be handled with the help of the do statement. This makes the form:

do
{
body of the loop

ANSI C Page No: 18


Young World Computer Institute C Material

}
while (test condition) ;

e.g.:
.
do
{
printf(Input a Number:);
number =getnum();
}
while(number > 0) ;

The for statement:

The for loop is another entry-controlled loop that provides a more concise loop
control structure. The general from of the for loop is.

for (initialization ; test-condition ; increment/decrement)


{
body of the loop
}

The execution of the for statement is as follows:


1. Initialization of the control variables is done first, using assignment
statement such as i=1 and count=0. The variables i and count are known
as loop-control variables.
2. The value of the control variable is tested using the test-condition. The
test-condition is a relational expression, such as i < 10 that determines
when the loop will exit. If the condition is true, the body of the loop is
executed; otherwise the loop is terminated and the execution continues
with the statement that immediately follows the loop.
3. When the body of the loop is executed, the control is transferred back to
the for statement after evaluating the last statement in the loop. Now, the
control variable is incremented or decremented in some cases using an
assignment statement such as i=i+1 or i=i-1 fro increment and decrement
respectively and the new value of the control variable is again tested to
see whether it satisfies the loop condition. If the condition is satisfied, the
body of the loop is again executed. This process continues till the value of
the control variables fails to satisfy the test-condition.

e.g.:

for( x = 0 ; x <= 9 ; x = x + 1)
{
printf( %d , x);

ANSI C Page No: 19


Young World Computer Institute C Material

}
printf(\n);

Jumps in Loops:

Jumping Out of a Loop:

Exiting from a loop can be accomplished by using the break statement or the
goto statement. When the break statement is encountered inside a loop, the
loop is immediately exited and the program continues with the statement
immediately following the loop. When the loops are nested, the break would
only exit from the loop containing it. That is, the break will exit only a single
loop.

Skipping a part of a loop:

Like a break statement, C supports another similar statement called the


continue statement. However, unlike the break which causes the loop to be
terminated, the continue, as the name implies, causes the loop to be
continued with the next iteration after skipping any statement in between. The
continue statement tells the compiler, SKIP THE FOLLOWING STATEMENT
AND CONTINUE WITH THE NEXT ITERATION. The format of the continue
statement is simply.

continue;

ANSI C Page No: 20


Young World Computer Institute C Material

CHAPTER-6 ARRAYS

An array is a fixed-size sequenced collection of elements of the same data


type. It is simply a grouping of like-type data. In its simplest form, an array can
be used to represent a list of numbers, or a list of names.
E.g.:
salary [ 10 ];
represents the salary of 10 employee.
While the complete set of values is referred to as an array, individual values are
called elements.

We can use arrays to represent not only simple lists of values but also tables of
data in two or three or more dimensions.
Types of arrays:
1. One dimensional array
2. Two dimensional array
3. Multidimensional array

One dimensional Array:

A list of items can be given one variable name using only one subscript and such
variable is called a single-subscripted variable or one-dimensional array. The
subscript can begin with number 0 that is x[0].
If we want to represent a set of five numbers, say (35,40,20,57,19), by an array
variable name number, then we may declare the variable number as
int number [5];
and the computer reserves five storage locations as shown below:

number[0]
number[1]
number[2]
number[3]
number[4]
The values of the array elements can be assigned as:
number[0]=35;
number[1]=40;
number[2]=20;
number[3]=57;
number[4]=19;
This would cause the array number to store the values as:

35
40
20
57
19

ANSI C Page No: 21


Young World Computer Institute C Material

Declaration of one-dimensional arrays:

Like any other variable, arrays must be declared before they are used. The
general form of array declaration is

type variable-name [size];

the type specifies the type of the element that will be contained in the array, such
as int, float or char and size indicates the maximum number of elements that can
be stored inside the array.
E.g.:
float height [50];
declares the height to be an array containing 50 real elements. Any subscripts 0
to 49 are valid.

The C language treats character strings, simply as array of character. The size of
the character string represents the maximum number of character that the string
can hold.
E.g.:
char name[10];
declares the name as a character array(string) variable that can hold maximum
of 10 characters. Suppose we read the string constant into variable name.
WEL COME
Each character of the string is treated as an element of the array name and is
stored in the memory as follows:

W
E
L

C
O
M
E
\0

When the compiler sees a character string, it terminates it with an additional null
character. Thus the element name [10] holds the null character \0.
When declaring character arrays, we must allow one extra element space for the
null terminator.

Initialization of one dimensional array:

After an array declared, its elements must be initialized. Otherwise, they will
contain garbage. An array can be initialized at either of the following stages.

ANSI C Page No: 22


Young World Computer Institute C Material

1. At compile Time
2. At run time

Compile Time Initialization:


The general form of initialization of arrays is:

type array-name[size] = { list of values };


e.g:

int number [3] = { 0, 0, 0 };


float total[5] = { 0.0, 15.75,-10 };
int counter[ ] = {1, 1,1, 1 };

Run Time initialization:


This approach is usually applied for large array.
E.g:
for(i=0;i < 100; i=i+1)
{
if i < 50
sum[i] = 0.0;
else
sum[i] = 1.0;
}

Two Dimensional Array:

In mathematics, we represent a particular value in a matrix by using two


subscripts such as Vij. Here V denotes the entire matrix and the value in i th row
and jth coloumn.

Two dimensional arrays are declared as follows:

type array_name [row_size][column_size];

E.g:
matrix1[4][3];
Columns

Rows [0][0] [0][1] [0][2]


[1][0] [1][1] [1][2]
[2][[0] [2][1] [2][2]
[3][0] [3][1] [3][2]

Initialization of two dimensional array:

ANSI C Page No: 23


Young World Computer Institute C Material

Like the one dimensional array, two dimensional arrays may be initialized by
following their declaration with a list of values enclosed in braces.
E.g:
int table[2][3] = { 0, 0, 0, 1, 1, 1};
int table[2][3] = { {0, 0,0} , {1, 1, 1} };

Multidimensional Array:

C allows arrays of three or more dimensions. The exact limit is determined by the
compiler. The general form of a multi-dimensional array is:

type array_name[s1][s2][s3]..[sn];

where si is the size of the ith dimension.


E.g.:
int survey[3][4][5];
float table[5][4][5][3];

CHAPTER-7 CHARACTER ARRAY AND STRING

ANSI C Page No: 24


Young World Computer Institute C Material

A string is a sequence of characters that is treated as a single data item.


Character strings are often used to build meaningful and readable programs. The
common operations performed on character strings include:
Reading and writing strings
Combining strings together
Copying one string to another
Comparing string for equality
Extracting a portion of a string (sub string)

Declaring and initializing string variables:

C does not support as a data type. However it allows us to represent strings as


character arrays. The general form of declaration of a string variable is:

char string_name[size]
;
E.g.:
char city[10];
char name[30];

char city[9]= New York ;


char city[9]={N,e,w, ,Y,o,r,k,\0};

char string [ ]={H,E,L,L,O,\0}


char string [10] = HELLO;

Reading strings from the terminals:

Using scanf function. The familiar input scanf can be used with %s format
specification to read in a string of character.
E.g.:
char address[10];
scanf(%s,address);

We can also specify the field width using the form %ws in the scanf statement for
reading a specified number of characters from the input string.

scanf(%ws, name);

Here, two things may happen


1. The width w is equal to or greater than the number of character typed in.
The entire string will be stored in the string variable.
2. The width w is less than the number of character in the string. The excess
characters will be truncated and left unread.
E.g.:

ANSI C Page No: 25


Young World Computer Institute C Material

char name[10];
scanf(%5s,name);
The input RAM wil be stored as:

R A M \0 ? ? ? ? ? ?
0 1 2 3 4 5 6 7 8 9

The input KRISHNA will be stored as:

K R I S H \0 ? ? ? ?
0 1 2 3 4 5 6 7 8 9

Arithmetic Operations on Characters:

C allows us to manipulate characters the same way we do with numbers.


Whenever a character constant or character variable used in an expression, it
is automatically converted into an integer value by the system. The integer
value depends on the local character set of the system.
E.g:
x =a;
printf(%d\n,x);
will display the number 97 on the screen.

x = z 1;
ch >= A && ch <= Z
x= 7 0
then
x=ASCII value of 7 ASCII value of 0
x=55 48
x= 7
C library supports a function that converts a string of digits into their integer
values. The function takes the form
x=atoi(string);

ANSI C Page No: 26


Young World Computer Institute C Material

E.g.:
number=1984
year=atoi(number);

String Handling Functions:

strcat() function:

This function concatenates two strings.


strcat(string1, string2);
E.g:
str1=Young World
str2=Computer Institute
str3=strcat(str1,str2);
will stored as str3= Young World Computer Institute

strcmp() function:

This function used for comparing two strings.


strcmp(string1, string2);
E.g.:
str1=Young World Infotech
str2=Young World Infotech
strcmp(str1,str2);

strcpy() function:

This function is used to copies one string over another.


strcpy(string1,string2)
this assign the content of string2 to string1.
E.g.:
str1=Young World
str2=Computer
strcpy(str2,str1);
result will be str2=Young World

strlen() function:

This function counts and returns the number of character in a string.


n=strlen(string)
E.g.:
a=strlen(Young)
result will be a=5.

ANSI C Page No: 27


Young World Computer Institute C Material

CHAPTER-8 USER DEFINED FUNCTIONS

C functions can be classified into two categories, namely, library functions and
user-defined functions. main is an example of user-defined functions. printf and
scanf belong to the category of library functions.

Every program must have a main function to indicate where the program has to
begin its execution. While it is possible to code any program utilizing only main
function, it leads to a number of problem. The program may become too large
and complex and as a result the task of debugging, testing, and maintaining
becomes difficult. If the program is divided into functional parts, then each part
may be independently coded and later combined into a single unit. These
subprograms called functions are much easier to understand, debug, and test.

Main Program

Function A Function B Function C

B1 B2

E.g.:
void show( ); // Function Declaration
main( )
{
.
show( ); // Function Call
.
}
void show( ) // Function Definition
{
// Function Body
}

ANSI C Page No: 28


Young World Computer Institute C Material

In order to make use of a user-defined function, we need to establish three


elements that are related to functions:
1. Function definition
2. Function call
3. Function declaration

The function definition is an independent program module that is specially written


to implement the requirement of the function. In order to use this function we
need to invoke it at a required place in the program. This is known as the
function call. The program (or function) that calls the function is referred to as the
calling program or calling function. The calling program should declare any
function (like declaration of variable) that is to be used later in the program. This
is known as the function declaration or function prototype.

Definition of Functions:

A function definition, also known as function implementation shall include the


following elements
1. Function name.
2. Function type
3. List of parameters
4. Local variable declarations
5. Function statement
6. A return statement

All the six elements are grouped into two parts, namely,
Function header (First three elements)
Function body (Second three elements)

A general format of a function definition to implement these two parts is given


below;

function_type function_name(parameter list)


{
local variable declaration;
executable statement1;
executable statement2;
..

return statement;
}

ANSI C Page No: 29


Young World Computer Institute C Material

Function header:

The function header consists of three parts: The function type (also known as
return type, the function name and the formal parameter list. Note that a
semicolon is not used at the end of the function header.

Name And Type:

The function type specifies the type of value (like int or float) that the
function is expected to return to the program calling the function. If the
return type is not explicitly specified, C will assume it is an integer type. If
the function is not returning anything, then we need to specify the return
type as void.

The function name is any valid C identifier and therefore must follow the
same rule of information as other variable names in C. The name should
be appropriate to the task performed by the function.

Formal parameter list:

The parameter list declares the variables that will receive the data sent by
the calling program. They serve as input data to the function to carry out
the specified task. Since they represent actual input values, they are often
referred to as formal parameter. The parameters are also known as
arguments.

E.g:
float volume(float height, float width, float breath) { }
int sum(int a, int b) { }
float div(int a, int b) { }

Function Body:

The function body contains the declarations and statement necessary for
performing the required task. The body enclosed in braces, contain three part, in
the order given below:

1. Local declarations that specify the variable needed by the function.


2. Function statement that perform the task of the function.
3. A return statement that returns the value evaluated by the function.

If a function does not return any value, we can omit the return statement.
However, note that its return type should be specified as void. Again, it is nice to
have a return statement even for void functions.

ANSI C Page No: 30


Young World Computer Institute C Material

Category of Functions:

A function depending on whether arguments are present or not and whether a


value is returned or not, may belong to one of the following categories.

Category 1: Function with no arguments and no return values,


Category 2: Functions with arguments and no return values.
Category 3: Function with arguments and one return value.
Category 4: Function with no arguments but return a value.
Category 5: Function that return multiple values.

Recursion:

When a called function in turn calls another function a process of chaining


occurs. Recursion is a special case of this process, where a function calls itself. A
very simple example of recursion is

factorial(int n)
{
int fact;
if(n = = 1)
{
return (1);
}
else
{
fact = n* factorial(n-1);
}
return (fact);
}

ANSI C Page No: 31


Young World Computer Institute C Material

CHAPTER-9 STRUCTURES AND UNION

We have seen that arrays can used to represent a group of data items that
belong to the same data type, such as float or int. However, we cannot use an
array if we want to represent a collection of data items of different types using a
single name. Fortunately, C supports a constructed data type known as
structures, a mechanism for packing data of different types.

A structure is a convenient tool for handling a group of logically related data


items.

Examples of structures are:


Time : seconds, minutes, hours
Date : day, month, year
Book : author, title, price, publication
Student: name, age, marks

The general form of a structure definition as shown below:

struct tag_name
{
data_type member1;
data_type member2;
.
.
};

In defining a structure you may note the following syntax:

1. The template is terminated with a semicolon.


2. While the entire definition is considered as a statement, each member is
declared independently for its name and type in a separate statement
inside the template.
3. The tag name such as student can be used to declare structure variables
of its type, later in the program.

We can define a structure to hold this information as follows:

struct student
{
char name[20];
char address[30];
int age;
int marks;
};

ANSI C Page No: 32


Young World Computer Institute C Material

The keyword struct declares a structure to hold the details pf four data fields,
namely name, address, age, and marks. These fields are called structure
elements or members. Each member may belong to a different data type of data.
student is the name of the structure and is called the structure tag. The tag name
may be used subsequently to declare variables that have the tags structure.
Above described format called as template.

Declaring Structure Variables:

After defining a structure format we can declare variables of that type. As


structure variable declaration is similar to the declaration of variables of any other
data types. It includes the following elements:
1. The keyword struct.
2. The structure tag.
3. List of variable names separated by commas.
4. A terminating semicolon.

E.g.:
struct student stud1, stud2, stud3;

declares stud1, stud2, and stud3 as variables of type struct student.

The complete declaration might be look like this.

struct student
{
char name[20];
char address[30];
int age;
int marks;
};
struct student stud1, stud2, stud3 ;

or

struct student
{
char name[20];
char address[30];
int age;
int marks;
} stud1, stud2, stud3 ;

both are valid.

ANSI C Page No: 33


Young World Computer Institute C Material

Accessing Structure Members:

We can access and assign values to the members of a structure in a number of


ways. The members themselves are not variables. They should be linked to the
structure variables in order to make them meaningful members. For example, the
word name has no meaning whereas the phrases name of the student has a
meaning. The link between member and a variable is established using the
member operator . which is known as dot operator or period operator.
E.g.:
stud1.name
We would assign values to the members of stud1 for example,

strcpy(stud1.name , Amit);
strcpy(stud1.address , Chopato, Anand);
stud1.age = 23;
stud1.marks= 80;
or
scanf(%s\n, stud1.name);
scanf(%d\n, stud1.age);

Unions:

Unions are a concept borrowed from structure and therefore follow the same
syntax as structure. However, there is major distinction between them of storage.
In structure, each member has its own storage location, whereas all the
members of a union use the same location. This implies that, although a union
may contain members of different types, it can handle only one member at a
time. Like structures, a union can be declared using the keyword union as follow:

union item
{
int a;
float b;
char c;
} code;
The storage of these variables is as follows.

Storage of 4 bytes
1000 1001 1002 1003

c
a
b

ANSI C Page No: 34


Young World Computer Institute C Material

CHAPTER-10 POINTERS

A pointer is a derived data type. It is built from the fundamental data types
available in C. Pointers contain memory address as their value. Since these
memory addresses are the locations in the computer memory where program
instructions and data are stored, pointers can be used to access and manipulate
data stored in the memory.

Pointers are used frequently in C, as they offer a number of benefits to the


programmer. They include:

1. Pointers are more efficient in handling arrays and data tables.


2. Pointers can be used to return multiple values from a function via function
arguments.
3. Pointers permits reference to function and thereby facilitating passing of
functions as arguments to other functions.
4. The use of pointer arrays to character string results in saving of data
storage space in memory.
5. Pointers allow C to support dynamic memory management.
6. Pointers provide an efficient tool for manipulating dynamic data structures
such as structures, linked lists, queues, stacks and trees.
7. Pointers reduce length and complexity of programs.
8. They increase the execution speed and thus reduce the program
execution time.
The computers memory is a sequential collection of storage cells as shown in
following figure. Each cell, commonly known as a byte, has a number called
address associated with it. Typically, the addresses are numbered consecutively,
starting from zero. The last address depends on the memory size.

Memory Cell Address

0
1
2
3
4
5
.
.
.
.
.
.
.
65,635
Fig.

ANSI C Page No: 35


Young World Computer Institute C Material

Consider the following statement


int quantity = 179;
This statement instructs the system to find a location for the integer variables
quantity and puts the value 179 in that location. Let us assume that the system
has chosen the address location 5000 for quantity. We may represent this as

Quantity ------------------------ variable


179 ------------------------ value
5000 ------------------------ address

Memory addresses are simply numbers; they can be assigned to some variables,
which can be stored in memory, like other variable. Such variables that hold
memory addresses are called pointer variables.
We assign the address of quantity to a variable p. The link between the variables
p and quality can be shown as:

Variable Value Address

Quantity 179 5000

P 5000 5058

Since the value of the variable p is the address of the variable quantity, we may
access the value of quantity by using the value of p and therefore, we say that
the variable p points to the variable quantity. Thus, p gets the name pointer.

Accessing the address of a variable:

The actual location of a variable in the memory is system dependent and


therefore, the address of a variable is not known to us immediately. How can we
then determine the address of a variable? This can be done with the help of the
operator & available in C. The & immediately preceding a variable returns the
address of the variable associated with it. For example, the statement

p = &quality;

would assign the address 5000 to the variable p. The & operator can be
remembered as address of.
The & operator can be used only with a simple variable or an array element.

ANSI C Page No: 36


Young World Computer Institute C Material

Declaring Pointer Variables:

The declaration of a pointer variable takes the following form:

data_type *pt_name;

This tells the compiler three thing sabout the vaiable pt_name
1. The asterisk (*) tells that the variable pt_name is a pointer variable.
2. pt_name needs a memory location.
3. pt_name points to a variable of type data_type.

For example:
int *p; //integer pointer
float *p; // float pointer
declares the variable p as a pointer variable that points to an integer or float data
type. Remember that the type int or float refers to the data type of the variable
being pointed to by p and not the type value of the pointer.

Initialization of pointer variable:

The process of assigning the address of a variable to a pointer variable is known


as initialization. Once a pointer variable has been declared we can use the
assignment operator to initialize the variable. Example:

int quantity;
int *p; // declaration
p = &quantity; // Initialization

ANSI C Page No: 37

Anda mungkin juga menyukai