Skip to content
#1. _________ are an extremely powerful programming tool.
#2. Each variable is stored in a particular area of the__________
#3. By default, the memory size for variable is allocated at compile time is known as
#4. By using functions we can passing arguments only by ______
#5. ________ is an indirect method of accessing the variables.
#6. By using this pointer variable we may call that particular _______ location.
#7. In Pointer, there are __________ operators can be used.
#8. Address of operator is _____
#9. Dereferencing operator is ______
#10. A _________ is declared by giving it a type and a name.
#11. Once a variable is declared, we can get its ______ by preceding its name with the unary operator.
#12. ________ Pointer accepts integer values and it allocates memory for 2 bytes to the pointer variable.
#13. ________ pointer accepts floating values and it allocates memory for 4 bytes to the pointer variable.
#14. When we declares a string in the way of using _________, they are not expandable and very much loss of memory location.
#15. char str[] is a ______ concept.
#16. char *str[] is _________ concept
#17. By using _________ there is chance to wastage of memory and not expandable.
#18. By using _________ it occupies many character without range and no memory wastage.
#19. The ______ format in printf expects a character pointer.
#20. _______ Pointer is possible that the size of a pointer can vary depending on the data type of the object to which points.
#21. ______ pointer is sort of a generic pointer.
#22. There is one other value a pointer may have it may be set a _______ pointer.
#23. A ______ pointer is a special pointer value that is known not to point anywhere.
#24. _________ is consecutive memory address in nature.
#25. By default, the _______ passing argument by value only.