Art of C Programming
1 . Address stored in the pointer variable is of type __________
2. "*" is called as ___________
3. Comment on the following pointer declaration?
int *ptr, p;
4. Which of the following are correct syntaxes to send an array as a parameter to function
5. Which of the following is not possible in C?
Answers
1. Integer
2.
3. ptr is a pointer to integer, p is not.
4. func(&array);
5. None of the mentioned
No comments:
Post a Comment