Author name: vasu

Variables in C

In C, a variable is a name given to a memory location. It is used to store some value that can be used multiple times in the program through the variable. How a variable is declared? A variable needs to be declared or created first before using. The basic syntax […]

Variables in C Read More »

Command Prompt

What is a Command Prompt

A command prompt (often abbreviated as cmd) is a command-line interpreter in which you can give commands to perform the functions on your PC. These functions include all the regular stuff like creating a new folder/file, deleting a folder/file, renaming, or navigating through the folders. For example, If you want to

What is a Command Prompt Read More »

PHP Data Types

Data type is the type of the data a variable is storing. PHP has different datatypes mentioned as follows – Datatypes in PHP can be broadly categorized in three categories – Scalar types They can hold only one value at a time. They further are of four types – Integer

PHP Data Types Read More »

C Data Types

A data type in c specifies the type of value that a variable can store for example integer, character, or float. Each data type requires a specific amount of memory. Data types in C are defined under three categories Primitive or primary Derived User defined Primitive Data Types – The

C Data Types Read More »