Skip to content
#1. An _______ is a group of elements that have common characteristics and share a common name.
#2. Each array element is referred to by specifying the array name followed by its ____________ enclosed in square brackets.
#3. The _________ indicates the position of the particular element with respect to the rest of the elements.
#4. The _________ must be non negative integer.
#5. An ________ is declared in the same manner as ordinary variables, except that each array name must be accompained by a size specification.
#6. The Subscript used to declare an array is sometimes called a _________
#7. Declaration for the array is often referred to as ______________
#8. The values to ________ an array must be constants never variables or function calls.
#9. An array can be initialized when declared by specifying the values of some or all of its ________
#10. If an array _______ is used by itself as an expression.
#11. A ____________ array have many rows and columns.
#12. The ______ can be declared by passing values of number of rows and number of columns as subscript value.
#13. Copies a string s1 into string s2.
#14. Concatenates s2 on to the end of s1.
#16. Returns a pointer to the first occurrence of ch in s1.
#17. Compares s1 and s2 with ignore case.
#18. Find the length of string s1 and assign to m variable.
#19. Converts string to lower case.
#20. Converts string to upper case.
#21. Reverse the string and assign the string in string.
#22. Returns a pointer to the first occurrence of s2 in s1.
#23. String function has using header file.
#24. A two-dimensional character array can be initialized to a list of ____
#25. A ________ which process character strings like printf(), gets() and puts() expect this termination character.