Posts Tagged ‘difference between user-defined and library function’

  • User defined functions

    Jan 11, 13 • 12346 Views • Resources23 Comments

    Ques 1. What is the difference between user defined function and library function? Answer. User Defined Functions has to be Developed by the user at the time of writing a program like Main() while library defined functions are already defined in the library

  • Functions in C Language

    Jan 11, 13 • 2986 Views • Resources • • 7 Comments

    Q 1. What is a static function ? Ans 1: A static function is a function whose scope is limited to the current source file. Scope refers to the visibility of a function or variable. Q 2. Is it possible to execute code even after the program exits the main()