C Programming Language
C Programming Language
Language
Table of Contents :
BASIC STEPS OF C PROGRAMMING LANGUAGE
STATEMENTS AND LOOPS.
FUNCTIONS, STRINGS AND ARRAYS
POINTERS AND DYNAMIC MEMORY ALLOCATION
STRUCTURE AND UNION
CHAPTER - 1
INTRODUCTION TO C-LANGUAGE
GETTING TO KNOW THE C COMPILER
WHERE C-LANGUAGE IS USED
WHY WE LEARN C-LANGUAGE
COMPILATION AND EXECUTION OF C PROGRAM
THE BASIC STRUCTURE OF A C PROGRAM
TOKENS
PREPROCESSOR
INPUT/OUTPUT FUNCTION
OPERATOR
PRIMITIVE DATA TYPES
Introduction to C- Language
EASY TO LEARN
STRUCTURED LANGUAGE
IT PRODUCES EFFICIENT PROGRAMS
IT CAN HANDLE LOW-LEVEL ACTIVITIES
IT CAN BE COMPILED ON A VARIETY OF COMPUTERS
Uses of C Language:
SOME EXAMPLES OF THE USE OF C MIGHT BE:
Operating Systems
Language Compilers
Assemblers
Text Editors
Print Spoolers
Network Drivers
Modern Programs
Data Bases
Language Interpreters
Utilities
Execution of C program
Interpreter
Instruction of source
Executable code
Execution of C program ( cont.. )
Directive Description
#define Substitutes a preprocessor macro
getch()
putch()
char scanf() printf() char getchar()
putchar()
getche()
printf() -- --
int scanf() int
printf() -- --
float scanf() float
printf() -- --
string scanf() string
gets() puts()
Operators in C :
AN OPERATOR OPERATES ON VARIABLES AND PERFORMS AN
ACTION IN A PROGRAM.
IT CONSISTS OF WORDS OR SYMBOLS.
FOR EXAMPLE, THE ARITHMETIC OPERATORS (+) AND (-) CAUSE US
TO ADD OR SUBTRACT TWO NUMBERS RESPECTIVELY.
OPERATORS IN C LANGUAGE MAY BE CLASSIFIED AS:
Arithmetic operators
Relational operators
Logical operators
Assignment operators
Pointer operators
Special operators
Bitwise operators
Arithmetic Operators :
Operator Symbol Form Operation
remainder of i
Remainder % i%j
divided by j
Addition + i +j i is added to j
i is subtracted from
Subtraction - i-j
j
Operator Action
== Equal
!= Not equal
Logical operators :
Operator Action
&& AND
|| OR
! NOT
Assignment Operator:
Operator Action
= Assignment
* Pointer to a variable.
?: Conditional Expression
Operator Precedence:
Category Operator Associativity
-2,147,483,648 to
long int 4
2,147,483,647
condition?expression 1 : expression 2
Type Casting
Type casting is a way to convert a variable from one data type to
another data type.
For example, if you want to store a long value into a simple integer
then you can type cast long to int.
You can convert values from one type to another explicitly using the
cast operator as follows:
(type_name) expression
CHAPTER - 3
Functions
Function Definition
Function Declaration
Function Calling
Function Argument
Function return values
Recursion
Arrays
1 Dimensional Array
2 Dimensional Array
CHAPTER – 3 (cont..)
String Function
Strlen()
Strlwr()
Strupr()
Strcat()
Strcpy()
Strrev()
Strcmp()
Function
A function is a group of statements that together perform a
task. Every C program has at least one function, which is
main().
A large C program is divided into basic building blocks
called C function.
C function contains set of instructions enclosed by “{ }”
which performs specific operation in a C program.
Actually, Collection of these functions creates a C
program.
Function ( cont..)
Types of C functions :
There are two types of functions in C programming:
Library function
User defined function
Library function : Library functions are the in-built function
in C programming system.
Eg : printf(), scanf(),. etc
User defined function : C allows programmer to define
their own function according to their requirement. These
types of functions are known as user-defined functions.
Function ( cont..)
User defined function :
Syntax :
Function ( cont..)
Defining a Function: The general form of a function
definition in C programming language is as follows :
Syntax :
return_type function_name( parameter list )
{
//Body of the function
}
Function ( cont..)
Defining a Function (cont..):
• Return Type: A function may return a value. The return_type is the data
type of the value the function returns. Some functions perform the desired
operations without returning a value. In this case, the return_type is the keyword
void.
• Function Name: This is the actual name of the function. The function
name and the parameter list together constitute the function signature.
}
Function ( cont..)
Function Arguments:If a function is to use arguments, it must declare
variables that accept the values of the arguments. These variables are called the
formal parameters of the function.
While calling a function, there are two ways that arguments can be passed to a
function:
return a;
return (a+b);
Function ( cont..)
Recursion : Recursion is the process of repeating items in a self-similar way.
Same applies in programming languages as well where if a programming allows
you to call a function inside the same function that is called recursive call of the
function.
Example :
#include<stdio.h>
int factorial(unsignedint i) int main()
{
{ int i =15;
if(i <=1) printf("Factorial of %d is %d\n", i, factorial(i));
return0;
{ }
return1;
}
return i * factorial(i -1);
}
String Function
The string in C programming language is actually a one-dimensional array of characters
which is terminated by a null character '\0'.
Thus a null-terminated string contains the characters that comprise the string followed
by a null.
C provides an inbuilt library for string functions. To use these functions, you need to
include the header file
#include<string.h>
S.N. Function Purpose Example
Declaring Arrays:
type arrayName [ arraySize ];
type arrayName[arraySize][array Size];
Example :
double balance[10];
double balance[10][10];
Initializing Arrays
double balance[5] = {1000.0, 2.0, 3.4, 7.0, 50.0};
#include <stdio.h>
void display(int a)
{
printf("%d",a);
}
int main()
{
int c[]={2,3,4};
display(c[2]); //Passing array element c[2] only.
return 0;
}
Chapter - 4
int * myIntPtr;
myIntPtr = &myInt;
int i = 42;
int * p1, *p2;
p1 = &i; 42 int i
int *p2
int *p1
Before
Pointers and Dynamic Memory
int i = 42;
int * p1, *p2;
p1 = &i; 42 int i
//--------------
p2 = p1;
int *p2
int *p1
After
Pointers and Dynamic Memory
17 int j
int i = 42; 42 int i
int j = 17
int * p1, *p2;
p1 = &i;
p2 = &j;
int *p2
int *p1
Before
Pointers and Dynamic Memory
17 int j
*p1 = *p2; 17 int i
int *p2
Value of location pointed int *p1
to by p2 copied to
location pointed to by p1 After
Pointers and Dynamic Memory
•They are created during run time, not when the program is
compiled.
Pointers and Dynamic Memory
new returns a pointer (or memory address) to the location where the
data is to be stored.
Pointers and Dynamic Memory
int * myIntPtr
myIntPtr = new int;
myIntPtr
Pointers and Dynamic Memory
12 3
int * myIntPtr
myIntPtr = new int;
myIntPtr
*myIntPtr = 123;
Pointers and Dynamic Memory
0 myIntPtr
int * myIntPtr;
myIntPtr = new int[4];
1 3 2 5
2
3 myIntPtr[1] = 325;
int *main_ptr;
main_ptr = new int;
222
set_value(main_ptr); main_ptr
-----------------------------------------
void set_value(int * tempPtr)
{
tempPtr
*tempPtr = 222;
}
Pointers and Arrays as Parameters
int *main_ptr;
main_ptr = new int[4];
set_value(main_ptr); main_ptr
222
-----------------------------------------
void set_value(int tempPtr[])
{
tempPtr
tempPtr[1] = 222;
}
Pointers and Arrays as Const
Parameters
int *main_ptr;
main_ptr = new int[4];
set_value(main_ptr); main_ptr
-----------------------------------------
void set_value(const int
tempPtr[])
{
tempPtr[1] = 222;
} Not allowed
Pointers and Dynamic Memory
inPtr myIntPtr;
42 Returned to
42 Delete p1; free store
42 17 42 17
An inaccessable
object
int *p1 int *p2 int *p1 int *p2
p2 = p1;
Pointers and Dynamic Memory
42 42
An inaccessable
object
int *p1 int *p1
p1 = new int;
Pointers and Dynamic Memory
What we wanted.
0 0 int * myIntPtr;
1 1 myIntPtr = new int[4];
myIntPtr
2 2 int * myIntPtr2;
3 3 myIntPtr2 = myIntPtr;
myIntPtr2
Not the default
behavior of ‘=‘
Free Store (heap)
Pointers and Dynamic Memory
What we got!
0 int * myIntPtr;
1 myIntPtr = new int[4];
myIntPtr
2 int * myIntPtr2;
3 myIntPtr2 = myIntPtr;
myIntPtr2
Let’s look at the copy constructor. The principles are the same for
the assignment operator overload.
DynamicClass newClass(oldClass);
Class DynamicClass
{
public:
DynamicClass (const DynamicClass & oldClass);
void operator =(const DynamicClass & oldClass);
~DynamicClass ();
…
};
Pointers and Dynamic Memory
DynamicClass::DynamicClass
(const DynamicClass& oldClass)
{
data = new Item[someSize];
for (int i=0; i < oldClass.currentSize; i++)
{
data[i] = oldClass[i];
}
}
Pointers and Dynamic Memory
0 A 0 A oldClass
data
1 B 1 B
2 C 2 C
3 D 3 D
After the data has been copied, we can delete the original
array and return the memory to free store.
Pointers and Dynamic Memory
0 A A
0 oldClass
1 B 1 B
data
2 C 2 C
3 D 3 D
4
5
6
Pointers and Dynamic Memory
delete [ ] oldClass;
0 A A
0 oldClass
1 B 1 B
data
2 C 2 C
3 D 3 D
4
5 Return
memory
6
Pointers and Dynamic Memory
Class DynamicClass
{
public:
DynamicClass (const DynamicClass & oldClass);
void operator =(const DynamicClass & oldClass);
~DynamicClass ();
…
};
Pointers and Dynamic Memory
When we are finished using a class instance, we must free any memory
pointed to by variables in the class. This is done automatically by invoking
the code contained in the class destructor. Failure to do so creates
memory leaks.
Like the constructor, the destructor does not return any data type. It has
the same name as the class name but is preceded by the ‘ ~’ symbol.
DynamicClass:: ~DynamicClass() { }
Pointers and Dynamic Memory
It’s use does require more care on the part of the programmer, since control
is now in the hands of the programmer and not the system.
Example :
union car{
char name[50];
int price;
}c1, c2, *c3;
Difference between union and structure
Structure Union
1.The keyword struct is used to define a structure 1. The keyword union is used to define a union.
2. When a variable is associated with a structure, the 2. When a variable is associated with a union, the
compiler allocates the memory for each member. The compiler allocates the memory by considering the
size of structure is greater than or equal to the sum of size of the largest memory. So, size of union is equal
sizes of its members. The smaller members may end to the size of largest member.
with unused slack bytes.
3. Each member within a structure is assigned unique 3. Memory allocated is shared by individual
storage area of location. members of union.
4. The address of each member will be in ascending 4. The address is same for all the members of a
order This indicates that memory for each member will union. This indicates that every member begins at
start at different offset values. the same offset value.
5 Altering the value of a member will not affect other 5. Altering the value of any of the member will alter
members of the structure. other member values.
6. Individual member can be accessed at a time 6. Only one member can be accessed at a time.
7. Several members of a structure can initialize at 7. Only the first member of a union can be
once. initialized.