Introduction What are the enums in C++? Enumeration is another way of defining user defined data types in C++. Though it has not much significance in programming but its a good way of understanding the basics of user defined data Read More …
Tag: programming
What are the repetition and loop statements in C++?
What are the repetitive and loop statements in C++? In programming, there are many tasks that we want to do repeatedly. For this we use the repetitive statements. Such statements help the users to write the program in compact way. Three types of repetitive statements are
For loop
while loop
do-while loop
How to select an Arduino?
How to select an Arduino? How to select an Arduino? A variety of Arduino boards is available based on the type of the microcontroller they have. They all are programmed through Arduino IDE. They are different in terms of their Read More …
How to define structures in C++? What is meant by structures within structures?
Introduction to structures How to define structures in C++? What is meant by structures within structures? In programming, we encounter different types of variables. Some of them are of int type, some are floats, and others are double or character. Read More …
What is macro and how is it used?
What is macro and how is it used? Definition: What is macro and how is it used? “Macro (abbreviated as “macroinstruction”), in computer science law or pattern that specifies how a specific input should be mapped to a replacement output.” Macros help Read More …