What Will Be The Declaration Of The Variable Ptr As The Pointer #846
What will be the declaration of the variable ptr as the pointer to array of 6 floats?
This multiple choice question (MCQ) is related to the book/course gs gs108 CSharp. It can also be found in gs gs108 Miscellaneous Topics - Pointers Operation - Quiz No.1.
What will be the declaration of the variable ptr as the pointer to array of 6 floats?
float *ptr[6]
float [6]*ptr
float(*ptr)[6]
float(*ptr)(6).