InterviewSolution
Saved Bookmarks
| 1. |
What Is The Prototype Of Printf Function? |
|
Answer» Prototype of printf function is: int printf( const char *format ,?) In this the Second PARAMETER: '?' (Three continuous DOTS) are KNOWN as called ellipsis which indicates the variable number of ARGUMENTS. Prototype of printf function is: int printf( const char *format ,?) In this the Second parameter: '?' (Three continuous dots) are known as called ellipsis which indicates the variable number of arguments. |
|