railway RRB JE (CBT I + CBT II) Mock Test 2024 Programming and Data Structure Programming in C Array
Consider arr [ ] is an array in C language. What will be the effect of "arr++;" ?
1
Base address of the array(arr) will be incremented by 1.
2
Base address of the array(arr) will be incremented by the word size of the processor.
3
Base address will be incremented by the size of the data type of array.
4
It will cause an error.