History of C language
In 1965, Bell Telephone Laboratories, General Electric Company and Massachusetts Institute of Technology where working together to develop a new
Read moreIn 1965, Bell Telephone Laboratories, General Electric Company and Massachusetts Institute of Technology where working together to develop a new
Read moreOne may argue that if there is plethora of programming languages available, then what makes C language so special? There
Read moreA pointer is a variable that stores the address of another variable. Unlike other variables that hold values of a
Read moreBefore we discuss function call by reference, lets understand the terminologies that we will use while explaining this: Actual parameters:
Read moreA function is a block of statements that performs a specific task. Suppose you are building an application in C
Read moreString is an array of characters. In this post, we learn how to declare strings, how to work with strings
Read moreThe goto statement is rarely used because it makes program confusing, less readable and complex. Also, when this is used,
Read moreThe continue statement is used inside loops. When a continue statement is encountered inside a loop, control jumps to the
Read moreA do while loop is similar to while loop with one exception that it executes the statements inside the body
Read moreA loop is used for executing a block of statements repeatedly until a given condition returns false. In the previous
Read more