682 views
1 votes
1 votes
what is the difference between *b[10]  and (*b)[10] ?

1 Answer

Best answer
2 votes
2 votes

*b[10] :

here every block of array is a pointerr..


 (*b)[10]

here b is variable which is a pointer and pointimg to an array of 10 size...

selected by

Related questions

0 votes
0 votes
1 answer
1
2 votes
2 votes
3 answers
2
0 votes
0 votes
1 answer
3
Isha Karn asked Dec 8, 2014
13,159 views
int x=5; void f() { x = x+50; } void g(h()) { int x=10; h(); print(x); } void main() { g(f()); print(x); }1) what is output if code uses deep binding?2)what is the output...
3 votes
3 votes
4 answers
4
Sanjay Sharma asked May 17, 2017
13,161 views
What is the difference between order and degree of a B-tree are they same or different