-
How many types of sorting array in c programming?
You can sort an array with any method you want, but there is a built-in qsort function, declared in stdlib.h (see the attached link). bubble sort, quick sort, insertion sort, merge sort, radix sort...
-
Explain the different types of array in c programming?
An array is an array. It is simply an arrangement of one (usually two) or more objects located sequentially in memory. You can address them with one or more indicies or pointers as desired, i.e. you...
-
What is integer array in c programming?
An integer array consists of only integer numbers, for instance, if you have the array of size 5 with interger type date int_array[5] it means that your first element int_array[0] is an integer...
-
Why array is needed in c programming?
To store multiple data. For example the program's command-line arguments are in array-elements argv[1], argv[2], ... argv[argc-1]
-
How many type of operator in c?
8 types of operators are used i.e arthmeticrelational logicalbitwiseconditional etc