C070Pointers • Definition
Most ImportantEasy
Q1.A pointer is a variable that stores:
A
a value
B
the address of another variable
Correct answer
C
a string
D
a function
Correct answers are highlighted in green
int a = 10; int *p = &a; then what does *p give?*p print? int a = 5; int *p = &a; printf("%d", *p);int a = 5; int *p = &a; *p = 10;for example arr) represents the:int size = 4 bytes), then p++ increases the stored address by:char *s = "HELLO"; the pointer s points to:int array, then *(p + 1) accesses the: