CPP_Programmer

Recent Articles

C standard library

Prerequisite – C language C standard library (libc) is the standard library for the C programming language, as specified in the ANSI C standard. C standard library is also called the ISO ...read more

Functions in C

A function is a block of code that performs a specific task. It is a set of statements that take inputs, do some specific computation and produces output. A function can be ...read more

Decision Making in C

C conditional statements allow you to make a decision, based upon the result of a condition. These statements are called Decision Making Statements or Conditional Statements. Decision making statements available in C ...read more

Storage Classes in C

Every variable in C programming has two properties: type and storage class. Type refers to the data type of a variable. And, storage class determines the scope, visibility and lifetime of a ...read more

Operators in C

Operators are the foundation of any programming language. An operator is a symbol or a special character that tells the computer to perform certain mathematical or logical manipulations which is applied to ...read more