Basics of Arrays: C Program

Lets look at basics of arrays in C programming language. We’ve already covered a lot of stuffs about arrays in Introduction To Arrays: C Programming Language. In this video tutorial we’ll look at some specific things about arrays which we use often.

Related Read:
For Loop In C Programming Language
Sizeof Operator in C Programming Language

Declaring Array Variable

Syntax:

Data_type variable_name[array_size];

Ex: int a[5];

Here array variable is a, it can hold upto 5 integer values.

Index of array starts from zero, and it ends at N-1. N being the size of the array.

For Ex:
int a[N];
Here the first element of array a is at a[0] and the last element is at a[N-1].

Definition of Array

An array is a collection of data items, of same data type, accessed using a common name.

Video Tutorial: Basics of Arrays: C Program



YouTube Link: https://www.youtube.com/watch?v=cwMN7ZKiEuc [Watch the Video In Full Screen.]

Source Code: Basics of Arrays: C Program

Printing all the elements of an array

  1. #include<stdio.h>  
  2.   
  3. int main()  
  4. {  
  5.     int a[5] = {1, 2, 3, 4, 5}, i;  
  6.   
  7.     printf("Array elements are: \n");  
  8.     for(i = 0; i < 5; i++)  
  9.         printf("%d\n", a[i]);  
  10.   
  11.     return 0;  
  12. }  

Output:
Array elements are:
1
2
3
4
5

This prints all the elements of an array. In this program we’re declaring and initializing array variable simultaneously.

Empty curly braces for Array Variable

  1. #include<stdio.h>  
  2.   
  3. int main()  
  4. {  
  5.     int a[5] = {}, i;  
  6.   
  7.     printf("Array elements are: \n");  
  8.     for(i = 0; i < 5; i++)  
  9.         printf("%d\n", a[i]);  
  10.   
  11.     return 0;  
  12. }  

Output:
Array elements are:
0
0
0
0
0

Compiler will insert zero in all the empty spots.

Un-initialized Array Variable

  1. #include<stdio.h>  
  2.   
  3. int main()  
  4. {  
  5.     int a[5], i;  
  6.   
  7.     printf("Array elements are: \n");  
  8.     for(i = 0; i < 5; i++)  
  9.         printf("%d\n", a[i]);  
  10.   
  11.     return 0;  
  12. }  

Output:
Array elements are:
6356864
4200750
4200656
46
8

If array variable is left un-initialized it’ll have garbage values inside it.

Array Variable Not fully initialized Manually

  1. #include<stdio.h>  
  2.   
  3. int main()  
  4. {  
  5.     int a[5] = {3, 2}, i;  
  6.   
  7.     printf("Array elements are: \n");  
  8.     for(i = 0; i < 5; i++)  
  9.         printf("%d\n", a[i]);  
  10.   
  11.     return 0;  
  12. }  

Output:
Array elements are:
3
2
0
0
0

Whenever we assign less values than the array size, the remaining elements will get assigned to 0.

Expression As Array Size

  1. #include<stdio.h>  
  2.   
  3. int main()  
  4. {  
  5.     int a[2+3] = {3, 2, 1, 0, 5}, i;  
  6.   
  7.     printf("Array elements are: \n");  
  8.     for(i = 0; i < 5; i++)  
  9.         printf("%d\n", a[i]);  
  10.   
  11.     return 0;  
  12. }  

Output:
Array elements are:
3
2
1
0
5

Any valid expression which ultimately resolves to a positive integer is valid inside square brackets.

Negative Integer Number As Array Size

  1. #include<stdio.h>  
  2.   
  3. int main()  
  4. {  
  5.     int a[-5] = {3, 2, 1, 0, 5}, i;  
  6.   
  7.     printf("Array elements are: \n");  
  8.     for(i = 0; i < 5; i++)  
  9.         printf("%d\n", a[i]);  
  10.   
  11.     return 0;  
  12. }  

Output:
error: size of array ‘a’ is negative
warning: excess elements in array initializer

You can only have positive integer as size of an array and nothing else.

Trying To Assign More Values Than The Array Size

  1. #include<stdio.h>  
  2.   
  3. int main()  
  4. {  
  5.     int a[5] = {1, 2, 3, 4, 5, 6, 7}, i;  
  6.   
  7.     printf("Array elements are: \n");  
  8.     for(i = 0; i < 5; i++)  
  9.         printf("%d\n", a[i]);  
  10.   
  11.     return 0;  
  12. }  

Output:
warning: excess elements in array initializer

You can’t assign more values than the array size.

Overwrite values present at an index: Array

  1. #include<stdio.h>  
  2.   
  3. int main()  
  4. {  
  5.     int a[5] = {1, 2, 3, 4, 5}, i;  
  6.   
  7.     a[3]  = 100;  
  8.   
  9.     printf("Array elements are: \n");  
  10.     for(i = 0; i < 5; i++)  
  11.         printf("%d\n", a[i]);  
  12.   
  13.     return 0;  
  14. }  

Output:
Array elements are:
1
2
3
100
5

Here the previous value present at index 3(which can be access using a[3]), is overwritten by value 100.

Garbage Values In Empty Spots: Array

  1. #include<stdio.h>  
  2.   
  3. int main()  
  4. {  
  5.     int a[5], i;  
  6.   
  7.     a[3]  = 100;  
  8.   
  9.     printf("Array elements are: \n");  
  10.     for(i = 0; i < 5; i++)  
  11.         printf("%d\n", a[i]);  
  12.   
  13.     return 0;  
  14. }  

Output:
Array elements are:
6356864
4200766
4200672
100
8

As you can see, the element at index 3 has 100, and all other elements value is just garbage values.

Array Size In Memory

  1. #include<stdio.h>  
  2.   
  3. int main()  
  4. {  
  5.     int    a[5];  
  6.     float  b[5];  
  7.     char   c[5];  
  8.     double d[5];  
  9.   
  10.     printf("Int    Array: %d\n", 5 * sizeof(int));  
  11.     printf("Float  Array: %d\n", 5 * sizeof(float));  
  12.     printf("Char   Array: %d\n", 5 * sizeof(char));  
  13.     printf("Double Array: %d\n", 5 * sizeof(double));  
  14.   
  15.     return 0;  
  16. }  

Output:
Int Array: 20
Float Array: 20
Char Array: 5
Double Array: 40

Each cell in array occupies memory space depending upon its data type. Int and float occupies 4 bytes. Char occupies 1 byte. Double occupies 8 bytes. Also remember, size of data type is machine dependent.

Initializing and Accessing Array Elements

  1. #include<stdio.h>  
  2.   
  3. int main()  
  4. {  
  5.     int a[5], i;  
  6.   
  7.     printf("Enter 5 integer numbers\n");  
  8.     for(i = 0; i < 5; i++)  
  9.         scanf("%d", &a[i]);  
  10.   
  11.     printf("Array elements are: \n");  
  12.     for(i = 0; i < 5; i++)  
  13.         printf("%d\n", a[i]);  
  14.   
  15.     return 0;  
  16. }  

Output:
Enter 5 integer numbers
1
2
3
4
5
Array elements are:
1
2
3
4
5

For list of all c programming interviews / viva question and answers visit: C Programming Interview / Viva Q&A List

For full C programming language free video tutorial list visit:C Programming: Beginner To Advance To Expert