C Programming Tutorials

Types of operators in C Programming

In this tutorial you will familiarize with the various types of operators which are available for the c programming language. Operators in C language: An operator in C is defined as a sign or symbol that tells the compiler to implement definite mathematical or logical operation. C language has numerous built-in operators and offers the following types …

Types of operators in C Programming Read More »

Header files in C Programming

In this tutorial you will be familiarize with header file, commonly used header files and the predefined function declared in them. Header file: The files having ‘.h’ as extension are called header file. These header file generally contain declaration of predefined/in-built functions. For example: Header file “stdio.h” contains declaration of function printf() which is an …

Header files in C Programming Read More »

Calling of functions in C – Free C programming Tutorials

In this tutorial you will familiarize with the function declaration,definition of functions and calling of a function along with the examples. Function Declaration : A function declaration tells the compiler about the function name and how to call the function. Syntax for function declaration is given below : return_type function_name( parameters\arguments list ); For the above defined …

Calling of functions in C – Free C programming Tutorials Read More »