C Tutorial

C language tutorials

 

String handling is a technique used for handling any strings in “C” language. We have to handle string using character of the array in C language,  as the string is not a special data type in C language.

Continue is a keyword in the C language (some time called as a statement because ending with the semicolon)which is used to control the flow of loops.

If statement is a simple decision-making statement in C language. It is used to decide whether a particular statement or set of statements will be executed or not. When the certain condition is true then a block of statement is executed otherwise not. – Read more

Nested if statement contains If… else statements inside a if.. else statements. It’s called as nested if statements in C programming language. Nested if statement works similarly if statement – Read more

In C programming language for loop is used to repeat a specific block of statements until the particular condition is satisfied – For loop controlled by Boolean expression (Boolean expression returns true/false ) Read more

A for loop contains inside the body of another for loop. it’s known as nested for loop. Nested for loop is expanded version of for loop it uses to functioning a flow in multiple times in C programming language – Read more

In C programming language while loop is used to repeat a specific block of statements until the particular condition is satisfied – While loop controlled by Boolean expression (Boolean expression returns true/false ) Read more

A while loop contains inside the body of another while loop. it’s known as nested while loop. Nested while loop is expanded version of while loop. It uses to functioning multiple times in C programming languageRead more

In C programming language do-while loop is used to repeat a specific block of statements until the particular condition is satisfied -do-while loop controlled by Boolean expression (Boolean expression returns true/false ) Read more

 

  • Single dimension Array in C language

In C language, single dimension array is a collection of similar data types, which is arranged in single order(Single dimension) – Read more

In C language, a two-dimensional array is a collection of similar data types, which is arranged in double order (two dimensions)- Read more

In C language, three-dimensional array is a collection of similar data types, which is arranged in multiple order(three dimensions) – Read more

 

The function is a block of statement or instruction enclosed by curly braces { } that together perform one of the special tasks in  C program. Collection of these functions perform a special purpose(inter-connected a lot of tasks) in C program. – Read more

When one or more functions are utilized under a particular function, it is known as nesting function in C Programming Language. Read more

C programming language allows coders to define functions to perform special tasks. As functions are defined by users, they are called user-defined functions. – Read more

In the C Programming language, the Arithmetic function is used for arithmetic calculations and manipulations. – Read more

String function in C programming language is used to perform related operations of strings, which are always enclosed by double quotes. The character is enclosed by single quotes in c similar to other languages. – Read more

 

Recursion in C language – In the C language, A function that calls itself is known as a recursive function – Read more