void main() { int arr[4] = {1, 2,3, 4} int *ptr = &arr[0], i; for(i = 0; i < 2; i++) } What should be the statement in the blank to print all the elements in the array?
Reveal answer
Fill a bubble to check yourself
void main() { int arr[4] = {1, 2,3, 4} int *ptr = &arr[0], i; for(i = 0; i < 2; i++) } What should be the statement in the blank to print all the elements in the array?