Open In App

C Quiz – 107 | Question 2

Like Article
Like
Save
Share
Report

Which of the followings is correct for a function definition along with storage-class specifier in C language?
(A) int fun(auto int arg)
(B) int fun(static int arg)
(C) int fun(register int arg)
(D) int fun(extern int arg)
(E) All of the above are correct.


Answer: (C)

Explanation: As per C standard, “The only storage-class specifier that shall occur in a parameter declaration is register.” That’s why correct answer is C.

Quiz of this Question


Last Updated : 28 Jun, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads