Open In App

C | Functions | Question 3

Like Article
Like
Save
Share
Report

Which of the following is true about return type of functions in C?
 

(A)

Functions can return any type
 

(B)

Functions can return any type except array and functions
 

(C)

Functions can return any type except array, functions and union
 

(D)

Functions can return any type except array, functions, function pointer and union
 


Answer: (B)

Explanation:

In C, functions can return any type except arrays and functions. We can get around this limitation by returning pointer to array or pointer to function.
 


Quiz of this Question
Please comment below if you find anything wrong in the above post


Last Updated : 04 Feb, 2013
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads