0 0 Berlin Asked: January 13, 20222022-01-13T22:00:19+05:30 2022-01-13T22:00:19+05:30In: Programming Language what are the types of functions in c language? 0 0 what are the types of functions in c language? c language functionfunction in c languagetypes of functions in c language Share Facebook 1 Answer Voted Oldest Recent I'M ADMIN 2022-01-13T22:23:02+05:30Added an answer on January 13, 2022 at 10:23 pm There are Two Types of Functions in C predefined functions user defined functions Predefined functions These functions are already defined in the system libraries. Programmer can reuse the existing code in the system libraries which is helpful to write error free code. User must be aware of syntax of the function. Example: printf() , clrscr() User defined functions These functions must be defined by the programmer or user. Programmer has to write the coding for such functions and test them properly before using them. The syntax of the function is given by the user so there is no need to include any header files. Example: main(), swap(), sum(), etc.. Leave an answerCancel replyYou must login to add an answer. Username or email* Password* Remember Me! Forgot Password?
There are Two Types of Functions in C
Predefined functions
Example: printf() , clrscr()
User defined functions
Example: main(), swap(), sum(), etc..