SlideShare a Scribd company logo
1 of 28
C.K.PITHAWALA COLLEGE OF
ENGINEERING & TECHNOLOGY, SURAT
Branch:-computer 1st Year (Div. D)
ALA Subject:- Computer Programming & Utilization
ALA Topic Name:- Arrays in C language
Group No:-D9
Student Roll no Enrolment No Name
403 160090107051 Sharma Shubham
421 160090107028 Naik Rohan
455 160090107027 Modi Yash
456 160090107054 Solanki Divyesh
Submitted To
Unnati Shah
Hemil Patel
Arrays
In C Language
Contents
I. Introduction
 Declaring and creating Arrays
 Accessing array elements
 Array: input & output
II. One- dimensional Arrays
III. Declaration of One- dimensional Arrays
IV. Initialization of One- dimensional Arrays
V. Two- dimensional Arrays
VI. Initialization of Two- dimensional Arrays
VII. Multi-dimensional Arrays
VIII. Dynamic Arrays
IX. Array examples
INTRODUCTION
What is An Array?
 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.
 Some examples where the concept of array can be used are as under:
 List of temperatures recorded every hour in a day, or a month, or a
year.
 List of employees in an organization.
 List of products and their cost sold by a store.
 Test scores of a class of students.
 List of customers and their telephone numbers. Etc.
0 1 2 3 4 Element
index
Element of an array
Array of 5
elements
 An Array provides a convenient structure for representing
data hence it is classified as one of the Data Structure In C.
 Example:
 The above example represents the income of employees.
Individual values are called elements While the complete set
of values is referred to as an array. In above example there
can be maximum 10 elements.
 An Array is a derived data type
 Based on the basis of dimensions there are three types of
array :
1. One - dimensional Arrays
2. Two - dimensional Arrays
3. Multi - dimensional Arrays
income[10]
Declaring & Creating Arrays
Declaring Arrays
 Declaration defines the type of the elements
 Square brackets [ ] indicate “Array size"
 Examples:
(Where s.o.a is size of array)
int array[s.o.a];
Creating and Initializing Arrays
 Creating and initializing can be done together:
Int myIntArray[5] = {1, 2, 3, 4, 5};
myIntArray
managed heap
(dynamic memory)
0 1 2 3 4
… … … … …
Accessing Array Elements
READ AND MODIFY ELEMENTS BY INDEX
How to Access Array Element?
 Array elements are accessed using the square brackets operator [ ]
(indexer)
› Array indexer takes element’s index as parameter
› The first element has index 0
› The last element has index Length-1
 Array elements can be retrieved and changed by the [ ] operator
Arrays: Input and Output
Reading and Printing Arrays on the Console
Reading Arrays
 Ex. Int array[5];
Scanf(“%d”,&array[5]);
-------------------------------------------------
-------------------------------------------------
Printing Arrays
printf(“a[5]=%d”,array[5]);
-------------------------------------------------
-------------------------------------------------
One - Dimensional Arrays
 A list of item can be given one variable name using
only one subscript and such a variable is called a
single subscripted variable or One- dimensional array.
 It can be expressed as :
x[0], x[1], x[2], x[3], x[4]……..x[n]
C performs no bound checking and, therefore, care
should be exercised to ensure that the array indices
are within the declared limits.
Declaration of One-Dimensional Array
 Syntax:
 Data type can be int, float, char etc.
 Ex.
> int chat[10];
> char pr[50];
 Array of char data type is called STRING.
 When compiler sees a char String, it terminates it with
an additional null character. so string array holds the null
char ‘0’.we must allow 1 extra element space for the null
terminator.
data type variable_name[s.o.a];
Initialization of one Dimensional Array
 An array can be initialized at either of the following two
stages:
 At compile time
 At run time
• At compile time
 Syntax::
datatype array name[S.O.A]={list of value};
Ex:: int array[5]={1,2,3,4,5};
 If we have more initializers than the declared size, the
compiler will produce an error. That is illegal in C.
 Ex:: int number[3]={1,2,3,4,5};
• Run Time Initialization
 An array can be explicitly initialized at run time. This
approach is usually applied for initialization large arrrays.
 Ex::
 ---------------------------------------------------------------
 ---------------------------------------------------------------
 For (i=0; i<5; i++)
 {
 sum[i]=I;
 }
 ---------------------------------------------------------------
 ---------------------------------------------------------------.
 We can also use a read function such as scanf to initialize array.
 Ex::
 Int x[3];
 Scanf (“%d %d %d ,&x[0], &x[0], &x[0]”);
 Will intialize array elements with the value entered
through the keyboard.
Two Dimensional Array
 If we have store the value as table then we have to use 2-D
array.
 Ex:-
 C allow s us to define such tables of items by using 2-D
arrays.
 Syntax::
 Type array name[raw size][column size];
Hear the first index contains row size, second index
contains column size.
i-1 i-2 i-3
1. 10 20 30
2. 20 10 13
Initialization of Two Dimensional Array
 Like 1-d array, 2-d array may be initialized by following
their declaration with a list of initial values enclosed in
braces.
 Ex::
 Int table[2][3]={0,0,0,1,1,1};
 Int table[2][3]={ {0,0,0} ,{1,1,1} };
 Hear the first index saw raw size, second Index saw
column size.
Multi Dimensional 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[x1][x2][x3][x4]……..[xn];
 Where x1 x1 is size of array.
 ANSI C does not specify any limit for array dimension. However ,
most compiler permit seven to ten dimension . Some allow even
more.
Dynamic Arrays
 We created array at run time, so we can not modify it at run time so they are
called static array. This approach works fine as long as we know exactly
what our data requirement are..
 In C it is possible to allocate memory to arrays at run time , which known as
dynamic memory allocation and the array called dynamic array.
 Dynamic array are created using what are known as pointer variables and
memory management function malloc, calloc, realloc, which are in
<stdio.h>
Some Examples of Array
 Ex: Write a program to print first 10 number.
::
#inc lude< s tdio.h >
void main( )
{
Int i, r [10]; // pr [10] is ar r ay of 10
elements .
for ( i = 1; i < = 10; i+ + )
{
r [i]= i; // as s ign value to ar r ay
pr intf( "%d",r [i]) ;
pr intf( ” n”);
}
}
:: output::
1
2
3
4
5
6
7
8
9
10
 Write a program to read and display 3x3 matrix.
# i n c l u d e < s t d i o . h >
v o i d m a i n ( )
{
i n t i , j , a [ 3 ] [ 3 ] ;
p r i n t f ( “ E n t e r t h e e l e m e n t s o f 3 x 3 M a t r i x :  n ” ) ;
f o r ( i = 0 ; i < 3 ; i + + )
f o r ( j = 0 ; j < 3 ; j + + )
{
p r i n t f ( “ a [ % d ] [ % d ] = ” , i , j ) ;
s c a n f ( “ % d ” , a [ i ] [ j ] ) ;
}
p r i n t f ( “ T h e v a r i o u s e l e m e n t s i n 3 x 3 m a t r i x a r e :  n ” ) ;
f o r ( i = 0 ; i < 3 ; i + + )
{
p r i n t f ( “  n  t  t ” ) ;
f o r ( j = 0 ; j < 3 ; j + + )
p r i n t f ( “ % d  t ” , a [ i ] [ j ] ) ;
} }
:: output ::
E n t e r t h e e l e m e n t s o f t h e 3 x 3 m a t r i x :
a [ 0 ] [ 0 ] = 1
a [ 0 ] [ 1 ] = 2
a [ 0 ] [ 2 ] = 3
a [ 1 ] [ 0 ] = 4
a [ 1 ] [ 1 ] = 5
a [ 1 ] [ 2 ] = 6
a [ 2 ] [ 0 ] = 7
a [ 2 ] [ 1 ] = 8
a [ 2 ] [ 2 ] = 9
T h e v a r i o u s e l e m e n t s o f t h e 3 X 3 m a t r i x :
1 2 3
4 5 6
7 8 9
End of Presentation
Thank You

More Related Content

What's hot

What's hot (20)

Strings in c
Strings in cStrings in c
Strings in c
 
Arrays
ArraysArrays
Arrays
 
Programming in c Arrays
Programming in c ArraysProgramming in c Arrays
Programming in c Arrays
 
C++ Arrays
C++ ArraysC++ Arrays
C++ Arrays
 
concept of Array, 1D & 2D array
concept of Array, 1D & 2D arrayconcept of Array, 1D & 2D array
concept of Array, 1D & 2D array
 
Character Array and String
Character Array and StringCharacter Array and String
Character Array and String
 
Arrays in c
Arrays in cArrays in c
Arrays in c
 
ARRAY
ARRAYARRAY
ARRAY
 
Two dimensional arrays
Two dimensional arraysTwo dimensional arrays
Two dimensional arrays
 
Array in c++
Array in c++Array in c++
Array in c++
 
Basic array in c programming
Basic array in c programmingBasic array in c programming
Basic array in c programming
 
Strings Functions in C Programming
Strings Functions in C ProgrammingStrings Functions in C Programming
Strings Functions in C Programming
 
Arrays
ArraysArrays
Arrays
 
Structure in C language
Structure in C languageStructure in C language
Structure in C language
 
Arrays
ArraysArrays
Arrays
 
Strings
StringsStrings
Strings
 
Array Of Pointers
Array Of PointersArray Of Pointers
Array Of Pointers
 
C Structures and Unions
C Structures and UnionsC Structures and Unions
C Structures and Unions
 
String in c programming
String in c programmingString in c programming
String in c programming
 
arrays in c
arrays in carrays in c
arrays in c
 

Viewers also liked (9)

String functions in C
String functions in CString functions in C
String functions in C
 
Strings in C
Strings in CStrings in C
Strings in C
 
Structure in C
Structure in CStructure in C
Structure in C
 
Structure c
Structure cStructure c
Structure c
 
Structure of a C program
Structure of a C programStructure of a C program
Structure of a C program
 
Structure in c
Structure in cStructure in c
Structure in c
 
Array in c language
Array in c languageArray in c language
Array in c language
 
String c
String cString c
String c
 
String in c
String in cString in c
String in c
 

Similar to Arrays in C language

Similar to Arrays in C language (20)

Arrays basics
Arrays basicsArrays basics
Arrays basics
 
Arrays-Computer programming
Arrays-Computer programmingArrays-Computer programming
Arrays-Computer programming
 
02 arrays
02 arrays02 arrays
02 arrays
 
Array assignment
Array assignmentArray assignment
Array assignment
 
Arrays and library functions
Arrays and library functionsArrays and library functions
Arrays and library functions
 
Arrays
ArraysArrays
Arrays
 
Abir ppt3
Abir ppt3Abir ppt3
Abir ppt3
 
Introduction to Arrays in C
Introduction to Arrays in CIntroduction to Arrays in C
Introduction to Arrays in C
 
Arrays
ArraysArrays
Arrays
 
Array and its types and it's implemented programming Final.pdf
Array and its types and it's implemented programming Final.pdfArray and its types and it's implemented programming Final.pdf
Array and its types and it's implemented programming Final.pdf
 
Data structure array
Data structure  arrayData structure  array
Data structure array
 
VIT351 Software Development VI Unit2
VIT351 Software Development VI Unit2VIT351 Software Development VI Unit2
VIT351 Software Development VI Unit2
 
Unit4 Slides
Unit4 SlidesUnit4 Slides
Unit4 Slides
 
Chapter 13.pptx
Chapter 13.pptxChapter 13.pptx
Chapter 13.pptx
 
Arrays
ArraysArrays
Arrays
 
Arrays
ArraysArrays
Arrays
 
Arrays 1D and 2D , and multi dimensional
Arrays 1D and 2D , and multi dimensional Arrays 1D and 2D , and multi dimensional
Arrays 1D and 2D , and multi dimensional
 
ARRAYS
ARRAYSARRAYS
ARRAYS
 
Arrays & Strings
Arrays & StringsArrays & Strings
Arrays & Strings
 
Array
ArrayArray
Array
 

Recently uploaded

Recently uploaded (20)

Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptx
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptxCOMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
 
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
 
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the Classroom
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 

Arrays in C language

  • 1. C.K.PITHAWALA COLLEGE OF ENGINEERING & TECHNOLOGY, SURAT Branch:-computer 1st Year (Div. D) ALA Subject:- Computer Programming & Utilization ALA Topic Name:- Arrays in C language Group No:-D9 Student Roll no Enrolment No Name 403 160090107051 Sharma Shubham 421 160090107028 Naik Rohan 455 160090107027 Modi Yash 456 160090107054 Solanki Divyesh Submitted To Unnati Shah Hemil Patel
  • 3. Contents I. Introduction  Declaring and creating Arrays  Accessing array elements  Array: input & output II. One- dimensional Arrays III. Declaration of One- dimensional Arrays IV. Initialization of One- dimensional Arrays V. Two- dimensional Arrays VI. Initialization of Two- dimensional Arrays VII. Multi-dimensional Arrays VIII. Dynamic Arrays IX. Array examples
  • 5. What is An Array?  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.  Some examples where the concept of array can be used are as under:  List of temperatures recorded every hour in a day, or a month, or a year.  List of employees in an organization.  List of products and their cost sold by a store.  Test scores of a class of students.  List of customers and their telephone numbers. Etc.
  • 6. 0 1 2 3 4 Element index Element of an array Array of 5 elements
  • 7.  An Array provides a convenient structure for representing data hence it is classified as one of the Data Structure In C.  Example:  The above example represents the income of employees. Individual values are called elements While the complete set of values is referred to as an array. In above example there can be maximum 10 elements.  An Array is a derived data type  Based on the basis of dimensions there are three types of array : 1. One - dimensional Arrays 2. Two - dimensional Arrays 3. Multi - dimensional Arrays income[10]
  • 9. Declaring Arrays  Declaration defines the type of the elements  Square brackets [ ] indicate “Array size"  Examples: (Where s.o.a is size of array) int array[s.o.a];
  • 10. Creating and Initializing Arrays  Creating and initializing can be done together: Int myIntArray[5] = {1, 2, 3, 4, 5}; myIntArray managed heap (dynamic memory) 0 1 2 3 4 … … … … …
  • 11. Accessing Array Elements READ AND MODIFY ELEMENTS BY INDEX
  • 12. How to Access Array Element?  Array elements are accessed using the square brackets operator [ ] (indexer) › Array indexer takes element’s index as parameter › The first element has index 0 › The last element has index Length-1  Array elements can be retrieved and changed by the [ ] operator
  • 13. Arrays: Input and Output Reading and Printing Arrays on the Console
  • 14. Reading Arrays  Ex. Int array[5]; Scanf(“%d”,&array[5]); ------------------------------------------------- ------------------------------------------------- Printing Arrays printf(“a[5]=%d”,array[5]); ------------------------------------------------- -------------------------------------------------
  • 15. One - Dimensional Arrays  A list of item can be given one variable name using only one subscript and such a variable is called a single subscripted variable or One- dimensional array.  It can be expressed as : x[0], x[1], x[2], x[3], x[4]……..x[n] C performs no bound checking and, therefore, care should be exercised to ensure that the array indices are within the declared limits.
  • 16. Declaration of One-Dimensional Array  Syntax:  Data type can be int, float, char etc.  Ex. > int chat[10]; > char pr[50];  Array of char data type is called STRING.  When compiler sees a char String, it terminates it with an additional null character. so string array holds the null char ‘0’.we must allow 1 extra element space for the null terminator. data type variable_name[s.o.a];
  • 17. Initialization of one Dimensional Array  An array can be initialized at either of the following two stages:  At compile time  At run time • At compile time  Syntax:: datatype array name[S.O.A]={list of value}; Ex:: int array[5]={1,2,3,4,5};  If we have more initializers than the declared size, the compiler will produce an error. That is illegal in C.  Ex:: int number[3]={1,2,3,4,5}; • Run Time Initialization  An array can be explicitly initialized at run time. This approach is usually applied for initialization large arrrays.
  • 18.  Ex::  ---------------------------------------------------------------  ---------------------------------------------------------------  For (i=0; i<5; i++)  {  sum[i]=I;  }  ---------------------------------------------------------------  ---------------------------------------------------------------.  We can also use a read function such as scanf to initialize array.  Ex::  Int x[3];  Scanf (“%d %d %d ,&x[0], &x[0], &x[0]”);  Will intialize array elements with the value entered through the keyboard.
  • 19. Two Dimensional Array  If we have store the value as table then we have to use 2-D array.  Ex:-  C allow s us to define such tables of items by using 2-D arrays.  Syntax::  Type array name[raw size][column size]; Hear the first index contains row size, second index contains column size. i-1 i-2 i-3 1. 10 20 30 2. 20 10 13
  • 20. Initialization of Two Dimensional Array  Like 1-d array, 2-d array may be initialized by following their declaration with a list of initial values enclosed in braces.  Ex::  Int table[2][3]={0,0,0,1,1,1};  Int table[2][3]={ {0,0,0} ,{1,1,1} };  Hear the first index saw raw size, second Index saw column size.
  • 21. Multi Dimensional 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[x1][x2][x3][x4]……..[xn];  Where x1 x1 is size of array.  ANSI C does not specify any limit for array dimension. However , most compiler permit seven to ten dimension . Some allow even more.
  • 22. Dynamic Arrays  We created array at run time, so we can not modify it at run time so they are called static array. This approach works fine as long as we know exactly what our data requirement are..  In C it is possible to allocate memory to arrays at run time , which known as dynamic memory allocation and the array called dynamic array.  Dynamic array are created using what are known as pointer variables and memory management function malloc, calloc, realloc, which are in <stdio.h>
  • 24.  Ex: Write a program to print first 10 number. :: #inc lude< s tdio.h > void main( ) { Int i, r [10]; // pr [10] is ar r ay of 10 elements . for ( i = 1; i < = 10; i+ + ) { r [i]= i; // as s ign value to ar r ay pr intf( "%d",r [i]) ; pr intf( ” n”); } }
  • 26.  Write a program to read and display 3x3 matrix. # i n c l u d e < s t d i o . h > v o i d m a i n ( ) { i n t i , j , a [ 3 ] [ 3 ] ; p r i n t f ( “ E n t e r t h e e l e m e n t s o f 3 x 3 M a t r i x : n ” ) ; f o r ( i = 0 ; i < 3 ; i + + ) f o r ( j = 0 ; j < 3 ; j + + ) { p r i n t f ( “ a [ % d ] [ % d ] = ” , i , j ) ; s c a n f ( “ % d ” , a [ i ] [ j ] ) ; } p r i n t f ( “ T h e v a r i o u s e l e m e n t s i n 3 x 3 m a t r i x a r e : n ” ) ; f o r ( i = 0 ; i < 3 ; i + + ) { p r i n t f ( “ n t t ” ) ; f o r ( j = 0 ; j < 3 ; j + + ) p r i n t f ( “ % d t ” , a [ i ] [ j ] ) ; } }
  • 27. :: output :: E n t e r t h e e l e m e n t s o f t h e 3 x 3 m a t r i x : a [ 0 ] [ 0 ] = 1 a [ 0 ] [ 1 ] = 2 a [ 0 ] [ 2 ] = 3 a [ 1 ] [ 0 ] = 4 a [ 1 ] [ 1 ] = 5 a [ 1 ] [ 2 ] = 6 a [ 2 ] [ 0 ] = 7 a [ 2 ] [ 1 ] = 8 a [ 2 ] [ 2 ] = 9 T h e v a r i o u s e l e m e n t s o f t h e 3 X 3 m a t r i x : 1 2 3 4 5 6 7 8 9

Editor's Notes

  1. (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.*
  2. (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.*
  3. (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.*
  4. (c) 2007 National Academy for Software Development - http://academy.devbg.org. All rights reserved. Unauthorized copying or re-distribution is strictly prohibited.*