Functions are small block of codes or segments or subroutine that are used to perform some operation.
For example :
printf() - to print message or values onto the console.
scanf() - to take input from the console.
getch() - to take a character from the console.
and many more..
Functions always have opening and closing brackets " ( ) ".
Syntax :
return_type function_name (...
Monday, 19 September 2016
06:37
Functions
05:21