Select the correct way to assign the address of first element of-02556
Select the correct way to assign the address of first element of array to pointer?
This multiple choice question (MCQ) is related to the book/course vu cs201 Introduction to Programming. It can also be found in vu cs201 Final Term - Quiz No.4.
Select the correct way to assign the address of first element of array to pointer?
int *ptr = &data[1];
int *ptr = &data;
int *ptr = data;
int *ptr = data[0];