ARRAY:- array is collection of similar data types
TRAVERSAL:- Visiting every element of an array once, called traversal operation
INSERTION :- An element can be inseted in an array at a specified position is called Insertion operation,
DELETION :- The process to remove the element for array calls deletion operation
When the above program is executed, it produces following results -
OUTPUT :- 1 FOR INSERTION
OUTPUT:- 2 FOR DELETION
0 Comments