Currently browsing tag

Statements

Understanding One Dimensional Array in C Programming

What is Array? Some programs may need to handle same type of different number of data having same characteristics. In such situation, it will be easier to handle such data in Array, where same name is shared for all data with different subscripts. Array is a collection of similar data …

Understanding Jump Statements in C language – Goto, Switch. Break, Continue

The jump statements in C language unconditionally transfer program control within a function. Such statements are used on programs where certain results are waited to made a unconditional jump to a certain part of the program control. There are four types of jump statements; some where you may find Switch …