Functions in C Programming

In a C programming language a function is a group of statements that together perform a special task. In every C program has at least one function, which is main(). In a C library has a numerous predefined or built-in functions. For example, strcat() to concatenate two strings, main() from where program execution starts.  In a C programming … Read more

CSS Functions

CSS has a list of inbuilt functions that can be used as the value for different CSS properties. Here’s the list of the functions with a small description for each one of them. [table id=15 /]

Functions in PHP

A function is a block of code that can be used many times in a program. It helps us to save a lot of codes and time because function defines only one time and we can use it multiple time whenever & wherever we want. The most important reason for using function is ‘Reusability’. Consider … Read more