Multi-Dimension Array
An array having more than two subscripts is known as multi-dimensional array. It can be represented as a series of two-dimension arrays. Declaration of Multi-Dimension Array: We can declare Multi-dimension array usingRead More…
An array having more than two subscripts is known as multi-dimensional array. It can be represented as a series of two-dimension arrays. Declaration of Multi-Dimension Array: We can declare Multi-dimension array usingRead More…
In our previous article of Introduction to array, we had discussed about Single or One-Dimension array. In this article, we will continue our discussion on arrays by focusing on Two-Dimension array (2D-Arrays).Read More…
What is Array? A normal variable can hold a single value at a time. Say for example if we declare a variable of integer type, it can store any single integer valueRead More…
Break: A break statement can be used to terminate or to come out from the loop or conditional statement unconditionally. It can be used in switch statement to break and come outRead More…
An Exit Control Loop checks the condition for exit and if given condition for exit evaluate to true, control will exit from the loop body else control will enter again into theRead More…
An entry control loop checks the condition at the time of entry and if condition or expression becomes true then control transfers into the body of the loop. Such type of loopRead More…
C-programming language provides one of the most powerful features known as looping structure When we want to execute some statements repeatedly based on some specific condition looping structure can be helpful. LoopingRead More…
C-language provides goto statement to transfer control unconditionally to other part of the program. Although use of goto statement is not advisable but sometime it is desirable to use go to statement.Read More…
When multiple decisions involved in the program at that time we can use else…if ladder but some time it is difficult to read and understand. In addition to this when the numbersRead More…
When one if statement contains another if statement then such type of structure is known as nested if. Nested if structure also helps in multi-way decision making where one condition depends onRead More…