Warning: implode(): Invalid arguments passed in /www/wwwroot/jobquiz.info/mdiscuss.php on line 336 Is it true that a function may have several declarations, but only one definition? ?->(Show Answer!)
1. Is it true that a function may have several declarations, but only one definition?
Ask Your Doubts Here
Comments
By: guest on 01 Jun 2017 06.01 pm
Yes, but the function declarations must be identical. Example: #include<stdio.h> void Display(); void Display(); void Display(); void Display() { printf("Weclome to IndiaBIX.com..!"); } int main() { Display(); return 0; } //Output: Weclome to IndiaBIX.com..!