सही फ़ंक्शन हेडर को पहचानें.
Identify the correct function header.
A
def fun(a=2, b=3, c)
B
def fun(a=2, b, c=3)
C
def fun(a, b=2, c=3)
D
def fun(a, b, c=3, d)
Explanation
Correct Answer: C) def fun(a, b=2, c=3)