Question: True or false: The following C language code snippet will print out the value of each element of the array numbers: int numbers [ 3

True or false: The following C language code snippet will print out the value of each element of the array numbers:
int numbers[3]={1,2,3};
int* ptr = numbers;
for(int i =0; i<3; i++, ptr++){
printf("%d",*ptr);
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!