Knowledge in c language

Program to print table of strings

This helps in usage of many strings that are to be printed.

Program to explain function prototype.

This helps in knowing more about function prototype.

Program to explain function with argument and without return value.

Here there are arguments in function but no return values to the main function.

Program to explain function without argument and with return value

There are no arguments in the function but they return value to the main function.

Program to explain functions with argument with return value.

There are arguments in function and they return value also

Program to pass two dimensional array to a function.

This is passing a 2-D array to a function.

Program to find factorial by using call by value.

Factorial is the product of all the numbers from 1 to that given number.

Program to swap two numbers using call by reference.

This is to swap two numbers using a temporary variable.

Program to explain passing a string to a function.

This is passing of a string to a function.

Program to find factorial of a number using recursion.

This is to find just a factorial of a number using recursion which is the repeatative process.