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 moreIn order to communicate any idea, thought, instruction or information, humans make use of spoken language. The fact is that
Read moreThe following list illustrates the importance the C programming language, in no particular order: The C language is small and
Read more#include <stdio.h> #include <time.h> int main() { time_t s, val = 1; struct tm* current_time; s = time(NULL);
Read moreA pointer is a variable that stores the address of another variable. Unlike other variables that hold values of a
Read moreStructure is a group of variables of different data types represented by a single name. Lets say we need to
Read moreBefore we discuss function call by reference, lets understand the terminologies that we will use while explaining this: Actual parameters:
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 more