- Installation instructions C

There are several free and available IDEs for compiling and executing C programs. You can choose Dev-C ++, Code :: Blocks, or Turbo C. However, the most popular and commonly used
- Basic C program structure

Before we study the blocks that make up a C program, first look at a sample C program.
- Basic syntax of C programming

You already know about the basic structure of the C program, now you will easily understand the basic blocks in the C language.
- Data type in C programming

In the C programming language, data types refer to the system extension used for variable declarations of different types. The type of variable determines the amount of memory
- Variable in C programming

A variable in C is nothing but a name given to storage memory so that the program can be manipulated. Each variable in C has a defined type, to determine the size and layout for
- Constant in programming C

Constant refers to fixed values that the program cannot change during execution. Those fixed values are also called literals.
- Storage class in C programming

A storage class defines the scope (visibility) and the lifetime of a variable or / and functions in the C program. The preceding type specifications can be changed. Here are the
- Operator in programming C

Operator is a symbol that tells the compiler to perform a certain mathematical operation or logical operation. Language C has a lot of operators and provides operator types.
- Flow control in C programming

Flow control structures require the programmer to determine one or more conditions to evaluate and test by the program, along with the commands to be executed if the condition is
- Loop in programming C

Similar to other programming languages, C also provides us with many control structures and allows you to perform complex parts.
- Function in programming C

A function is a group of commands that go together to perform a task. Each C program has at least one function, main (), and all most normal programs define additional functions.
- Scope rules in programming C

A scope in any program is an area in the program where a defined variable exists and outside of that range the variable cannot be accessed.
- Array in Language C

The C programming language provides a data structure called an array, stored in a set of data of the same type with fixed length. An array is used to store data sets, but it is
- Cursor in C

Pointer in the C language is easy to learn. Some tasks in C language are made easier by pointers, and other tasks become more flexible, such as in memory allocation, which cannot
- String in C

The string in the C programming language is essentially a one-dimensional array of characters that ends with a null character ''.
- Structure (Struct) in C programming

Arrays in C allow you to define several types of variables that can hold the values of several components of the same type. But the structure is another type of data in the C
- What is C programming language?

C is a high-level programming language originally developed by Dennis M.Ritchie to develop the UNIX programming system at Bell Labs. C was originally developed on 1972 DEC PDP-11
- Object Number in JavaScript

The Number object represents the date in the form of a numeric value, or an integer or floating-point number. Generally, you don't need to worry about Number objects because the
- Boolean objects in JavaScript

Boolean objects represent two values, either true or false. If the value parameter is omitted either 0, -0, null, false, NaN, undefined, or an empty string (), the object has an
- String object in JavaScript

The String object helps you work with a series of characters; It helps handle the original string data types in JavaScript with some help methods.