engineering recuitment IB JIO (Junior Intelligence Officer) Mock Test 2023 Programming and Data Structure Programming in C Pointer
The following two C language statements are equivalent to, n = *&q. These statements are
p = &q;
n = * p;
which are further equivalent to
1
n = p
2
p = q
3
n = p*q
4
n = q