

InterviewSolution
Saved Bookmarks
1. |
Is it true that a function may have several declarations, but only one definition? |
Answer» 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..! | |