Programming
-
What are functions in C and C++?
Functions in C and C++ As the name suggests, a function does some action; for example, when you switch ON the light bulb, that switch performs a particular
Read the full post -
What is a String in C++? Working | Complete Details
A string is a sequence of characters in C++. In other programming languages, a string is often represented as an array of characters. However, in C++, the
Read the full post -
What is Pointer in C and C++? | Quick Example
A pointer is a variable that stores the address of another variable. That is, it points to another variable. For example, an integer variable holds (or sto
Read the full post -
Input and Output in C++ | Free C++ Ebook PDF Download
In the programming language C++, input/output is accomplished via streams. A stream is an abstraction that represents a device on which input and output op
Read the full post -
What are Datatypes in C++? What are modifiers in C++?
Datatype A datatype is used to restrict the variable with the type of data to be stored. Hence, one can define datatype as a way to tell the variables to s
Read the full post -
What is a Preprocessor in C/C++?
Preprocessor Have you ever thought about how Computer knows the commands you are writing? Have you seen that if you type wrong syntax or data types, then i
Read the full post -
What is Competitive Coding? Is it a Waste of time?
Competitive Coding Competitive Coding is when the participants are given a set of instructions and asked to write code that fulfils the requirements in as
Read the full post