Chapter 4: Arrays

 

Results

Previous
Next

#1. An _______ is a group of elements that have common characteristics and share a common name.

Previous
Next

#2. Each array element is referred to by specifying the array name followed by its ____________ enclosed in square brackets.

Previous
Next

#3. The _________ indicates the position of the particular element with respect to the rest of the elements.

Previous
Next

#4. The _________ must be non negative integer.

Previous
Next

#5. An ________ is declared in the same manner as ordinary variables, except that each array name must be accompained by a size specification.

Previous
Next

#6. The Subscript used to declare an array is sometimes called a _________

Previous
Next

#7. Declaration for the array is often referred to as ______________

Previous
Next

#8. The values to ________ an array must be constants never variables or function calls.

Previous
Next

#9. An array can be initialized when declared by specifying the values of some or all of its ________

Previous
Next

#10. If an array _______ is used by itself as an expression.

Previous
Next

#11. A ____________ array have many rows and columns.

Previous
Next

#12. The ______ can be declared by passing values of number of rows and number of columns as subscript value.

Previous
Next

#13. Copies a string s1 into string s2.

Previous
Next

#14. Concatenates s2 on to the end of s1.

Previous
Next

#15. Compares s1 and s2.

Previous
Next

#16. Returns a pointer to the first occurrence of ch in s1.

Previous
Next

#17. Compares s1 and s2 with ignore case.

Previous
Next

#18. Find the length of string s1 and assign to m variable.

Previous
Next

#19. Converts string to lower case.

Previous
Next

#20. Converts string to upper case.

Previous
Next

#21. Reverse the string and assign the string in string.

Previous
Next

#22. Returns a pointer to the first occurrence of s2 in s1.

Previous
Next

#23. String function has using header file.

Previous
Next

#24. A two-dimensional character array can be initialized to a list of ____

Previous
Next

#25. A ________ which process character strings like printf(), gets() and puts() expect this termination character.

Previous
Finish