A function 'show' is defined as : void show (int x = 0, int y =0) {printf("%d%d", x, y)} Which of the following function calls is illegal? (Assume h, are declared as integers)
(a) abc(),
(b) abc(h);
(c) abc(h, h);
(d) None of the above
Answers
Answered by
0
Answer:
abc()
Explanation:
Answered by
0
Answer:
K&R C: Pre-standardized C, based on Brian Kernighan and Dennis Ritchie (K&R) "The C Programming Language" 1978 book.
C90 (ISO/IEC 9899:1990 "Programming Languages. C"). Also known as ANSI C 89.
C99 (ISO/IEC 9899:1999 "Programming Languages. C")
C11 (ISO/IEC 9899:2011 "Programming Languages. C")
Similar questions