Knowledge in C programming

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.

Program to print Fibonacci series using function s

Fibonacci series is nothing but the third digit is equal to the sum of the first two digits.

Program to find GCD of two numbers.

This is to find greatest common divisor bw two numbers.

Introduction to C Language

It was mainly developed as a system programming language to write an operating system. The main features of C language include low-level access to memory, a simple set of keywords, and clean style, these features make C language suitable for system programmings like an operating system or compiler development.

Program to declare a structure and access it's elements.

First giving the details of a person in a structure and then accessing those elements.

Program to read a structure student with name,rollno,marks,and find the avg.

This is finding avg of 6subjects marks of a student structure