1-D Array in C Language

One Dimensional or 1-D Array in C with Examples. One dimensional array is an array that has only one subscript specification that is needed to specify a particular element of … Read more

Array in C Language

An array is defined as the collection of similar type of data items stored at contiguous memory locations. Why array is used? An array is a variable that can store … Read more

User defined function in C language

These are the functions which are created by the C programmer. There are three aspects of a user defined function in C language. Function declaration A function must be declared … Read more

Functions in C Language

A function is a block of code that performs a specific task. It is a group of statements that together perform a task. In this tutorial, you will be introduced … Read more

goto statement in C Language

The goto statement is known as jump statement in C. It is used to transfer the program control to a predefined label.  The goto statement can be used to repeat … Read more

C continue statement

continue is a keyword in C language. It is used to bring the program control to the beginning of the loop. Continue is also a loop control statement just like the … Read more

C Switch Statement

The switch statement in C is an alternate to if-else-if ladder statement. It allows a variable to be tested for equality against a list of values. Each value is called … Read more

C break statement

The break is a keyword in C. It is used to bring the program control out of the loop. In C, if you want to exit a loop when a specific condition … Read more