0
pls help with this question.
Fill in the blanks to declare a pointer to the num variable and double its value via the pointer. int num = 42; int __ ptr = __num; __ptr *= 2;
10 Answers
+ 5
*
&
*
+ 3
int num=42;
int*ptr=& num;
*ptr *=2;
+ 3
Fill in the blanks to declare a pointer to the num variable and double its value via the pointer.
int num = 42;
int __* ptr = __#
_*_ptr *= 2;
+ 2
S
0
*
&
*
0
* &
0
int num = 42;
void*ptr = #
printf("%d", *((int *)ptr));
The Perfect Answer For That
- 2
thank you so much :)
- 3
int num=42;
int*ptr=#
*ptr *=2;
- 5
int *ptr=#
*ptr*=2;