Unit: 1 ARRAY & STRING
- Define array. What are the limitations of linear array?
- Define Array. List the types of array.
- Explain multi dimensional array with example.
- Explain sscanf() and sprintf().
- Explain Insertion Operation on 1-D array with example.
- Explain Searching Operation on 1-D array with example.
- List the various operations on string and explain with example.
- Write a program read 10 numbers and sort them in ascending order.
- Explain merging operation of arrays and write C example.
Unit: 2 POINTER
- What is pointer? Explain with example. Write advantages of a pointer.
- Explain pointer operators (* and &) in brief.
- Difference between static and dynamic memory allocation
- What is void pointer? Explain void pointer with example.
- Explain malloc() and calloc() with example.
- Explain array of pointers with example.
- Explain Pointer to Pointer with example.