Here we shall prepare some basic arrays of integers, fractions, characters and strings.
Traversing an integer array linearly to find the largest number in the array.
Learning character array variations and need for null terminator
Finding the number of members in an array using the sizeof operator
Taking array entries from the user and displaying it like its formal representation as {1,2,..5}
Demonstrating how an array can be copied to another array of same size by copying each member of the array.
Demonstrating how to filter the array content and then copy it to another array.
Demonstrating how to filter the array content and then copy it to another array by maintaining the filter size count.
Search for presence of element in an integer array by using a function with a call by reference of array, size and search term.
( As In Exam - CBSE12A-2016 )
Write the definition of a function FixSalary(float Salary[], int N) in C++, w
( As In Exam - CBSE12A-2017 )
Write the definition of a function AddUp(int Arr[], int N) in C++, in which a
( As In Exam - CBSE12D-2015 )
Write the definition of a function Alter(int A[], int N) in C++, which should
( As In Exam - CBSE12A-2015 )
Write the definition of a function Change(int P[], int N) in C++, which shoul
( As In Exam - CBSE12D-2017 )
Find and write the output of the following C++ program code:
Note: Assu
( As In Exam - CBSE12D-2017 )
Write the definition of a function Reverse(int Arr[], int N) in C++, which sh
( As In Exam - CBSE12D-2016 )
Write the definition of a function FixPay(float Pay[], int N) in C++, which s
Write a function linsearch(int [],int, int) which searches for the term 23 in
Write a program to store 10 temperature readings in an array and then find th
Write a program to prove that the give array [23,43,51,43,23] is a palindrome
Write a program to collect 5 integer values from user in an integer array an
Prepare an array of temperature readings of an entire week with data as
Write a program to collect 5 numbers from user into a 1-D integer array. Calc
Write a program to search members of integer array 1 in array 2 and print the