Q1. WAP to print the address/values of the different variables (int,float,char) using & and * operators.
Q2. WAP to find out the difference between %u, %p, %x while printing the address of a variable.
Q3. Check the size of various pointer variables for int, char, float etc.
Q4. Verify the addresses of adjacent elements stored in an array of char, int, float.
Q5. Swap variables using pointers and functions.
Q6. WAP to pass and return an array out of a function.
Q7. WAP for dynamic memory allocation using malloc() and free().
Q8. What is dynamic memory allocation? Practice malloc(), calloc(), realloc() and free() functions.
Q9. WAP to copy one string to another string with and without using the string handling function.
Q10. WAP for the following
U N
U N I V
U N I V E R
U N I V E R S I
U N I V E R S I T Y
U N I V E R S I
U N I V E R
U N I V
U N
Q11.WAP to concatenate two strings and compare two strings.
Q12. Count vowels in a given string.