McqMate
Sign In
Hamberger menu
McqMate
Sign in
Sign up
Home
Forum
Search
Ask a Question
Sign In
McqMate Copyright © 2025
→
Computer Science Engineering (CSE)
→
Programming for Problem Solving
→
Pointer variable is declared using prece...
Q.
Pointer variable is declared using preceding _________ sign.
A.
^
B.
*
C.
&
D.
%
Answer» B. *
4.9k
0
Do you find this helpful?
36
View all MCQs in
Programming for Problem Solving
Discussion
No comments yet
Login to comment
Related MCQs
In order to fetch the address of the variable we write preceding _________ sign before variable name.
Consider the 32 bit compiler. We need to store address of integer variable to integer pointer. What will be the size of integer pointer?
Pointer is special kind of variable which is used to store __________ of the variable.
Address stored in the pointer variable is of type __________.
A Pointer to a block of memory is considered same as an array.
Wild pointer in C
Size of void pointer is
If we have declared an array described below – int arr[6]; then which of the following array element is considered as last array element ?
A C Variable Cannot Start With
What is storage class for variable A in below code? int main() { int A; A = 10; printf("%d", A); return 0; }