Data types define the type of data a variable can hold. C language has some predefined set of data types to handle various kinds of data that we can use in our ...read more
In this article, you will learn to print “Hello, World!” on the screen in C programming. Most students of programming languages, start from the famous ‘Hello World’ code. This program prints ‘Hello ...read more
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
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
Loops are very useful when you want to perform a task repeatedly. Loops are used to execute a set of statements repeatedly until a particular condition is satisfied. A loop consists of ...read more
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
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
Prerequisite – Variables in C | Set 1 In programming, a variable is a container (storage area) to hold data. A variable is nothing but a name given to a storage area ...read more
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
Prerequisite – Constants in C Constants refer to fixed values that the program may not alter during its execution. These fixed values are also called literals. Constants can be of any of ...read more