Pointer - Study Mode

[#1] In linux, argv[0] by command-line argument can be occupied by . . . . . . . .
Correct Answer

(D) all of the mentioned

[#2] An array of similar data types which themselves are a collection of dissimilar data type are . . . . . . . .
Correct Answer

(C) Array of Structure

[#3] In C, what is a pointer primarily used for?
Correct Answer

(C) Variable declaration

[#4] What is the result of the expression sizeof(int*) in C, assuming an int pointer on a typical system?
Correct Answer

(A) 4

[#5] What is the purpose of the '->' operator in C when used with pointers?
Correct Answer

(C) Member access operator