Browsing tag

C language

Operator in C programming language with example

Operator in C programming language with example In this tutorial, we discuss Operator in C programming language with the example. C programming operators C language provides a rich set of operators to manipulate variables. We can divide all the C programming operators into the following groups: Arithmetic Operators Assignment Operators Relational Operators Unary Operators Logical…

for loop in C programming language with example

for loop in C programming language with example In this article, we will discuss for loop in C programming language with example Looping structure is a control structure used in many programming languages for repetition tasks. As we known, there is three looping structure in C, including for loop.   For loop – for loop…

Single dimension Array of C language

Single dimension Array of C language In this tutorial, we will  discuss this in Single dimension Array in C  language An array is a collection of data structures that consist of fixed(cannot change array length) a number of values of the same type such as int, char, float etc… If the data can be viewed…

Pointers in C programming Language

Pointers in C programming Language We will discuss Pointers in C programming language Pointer variable in C The pointer variable is one of the features of C and C++ language It is one of the most fundamental and important concepts; similar to an array in C and C++ language, but it is not an array….

User defined function in C programming language

User defined function in C programming language We will learn about User defined function in the C programming language. C programming language allows coders to define functions to perform special tasks. As functions are defined by users, they are called user-defined functions. user-defined functions have contained the block of statements which are written by the…

ceil function in C programming language

ceil function in C programming language In this tutorial, we will learn about ceil function in C programming language In the C Programming Language, the ceil()  returns the nearest integer value which is greater than or equal to the value of floating point passed value. Declaration Syntax The syntax of  the ceil() function in the…

floor function in C programming language

floor function in C programming language We will learn about floor function in C programming language In the C programming Language, the floor() function returns the nearest integer value which is less than or equal to the value for floating point argument to this function Declaration Syntax The syntax of  the floor()  in the C…

fabs Arithmetic function in C programming Language

fabs Arithmetic function in C programming Language We will learn about fabs Arithmetic function in C programming Language In the C Programming Language, the fabs() arithmetic function returns the absolute value of a floating point. Declaration Syntax The syntax of  the fabs() function in the C programming Language double fabs(double x); parameters or Argument x…

Arithmetic function in C programming language

Arithmetic function in C programming language We will learn about Arithmetic function in C programming language In the C Programming language, the Arithmetic function is used for arithmetic calculations and manipulations. The arithmetic function is used for the arithmetic purpose in C Language C programming language contains a lot of header files for various purposes….

strncmp string function in C programming language

strncmp string function in C programming language In this tutorial, We will learn  about strncmp string function in C programming language Description strncmp() – In the c programming language, the strncmp() function returns a negative , Zero and positive integer depending on whether the first n character of the object pointed by str1 is less than,…