Discussion :: Functions
-
What is the notation for following functions?
1. int f(int a, float b) { /* Some code */ } 2. int f(a, b) int a; float b; { /* Some code */ }
A.
1. KR Notation |
B.
1. Pre ANSI C Notation |
C.
1. ANSI Notation |
D.
1. ANSI Notation |
Answer : Option C
Explanation :
KR Notation means Kernighan and Ritche Notation.
Be The First To Comment