
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 7197 Articles for C++

1K+ Views
The dot operator (.) in C++ is a member access operator, which is used to access the members (variables and functions) of a class, structure, and union through an object. It allows you to access and manipulate the properties of an object's data members and member functions. The dot (.) operator is used for various purposes. Here is the following list of its uses. Accessing Data Members Calling Member Functions Working with nested structures /Objects Chained Function Calls ... Read More

314 Views
The conditional operator (? :) is a ternary operator (it takes three operands). The conditional operator works as follows −The first operand is implicitly converted to bool. It is evaluated and all side effects are completed before continuing.If the first operand evaluates to true (1), the second operand is evaluated.If the first operand evaluates to false (0), the third operand is evaluated.The result of the conditional operator is the result of whichever operand is evaluated — the second or the third. Only one of the last two operands is evaluated in a conditional expression. The evaluation of the conditional operator ... Read More

2K+ Views
Unary operator is operators that act upon a single operand to produce a new value. The unary operators are as follows:OperatorsDescriptionIndirection operator (*)It operates on a pointer variable and returns an l-value equivalent to the value at the pointer address. This is called "dereferencing" the pointer.Address-of operator (&)The unary address-of operator (&) takes the address of its operand. The operand of the address-of operator can be either a function designator or an l-value that designates an object that is not a bit field and is not declared with the register storage-class specifier.Unary plus operator (+)The result of the unary plus ... Read More

245 Views
Big projects are difficult to manage on mere text editors. You're likely to be more productive and less frustrated if you use an IDE in such cases. There are various types of IDE's and you should select the right one which fits your needs. There is no single best IDE for C++ on Windows. You must choose your tool wisely. Here is a list of popular and IMO best IDEs for Windows.Visual Studio − It is an IDE developed by Microsoft. This IDE has the best in class tooling for building, developing and profiling programs of C++ on Windows. Visual ... Read More

677 Views
While developing softwares, the big projects become difficult to manage on mere text editors. So using an IDE makes it more smoother and productive. In this article we will discuss the popular IDE's for working with C++ programs on a Linux environment. We will compare the features of various IDEs and help you choose the best one for your needs. Best IDE's for C++ Programming Here is the list of best IDE's for C++ programming in Linux. Visual Studio Code (VS Code) Code::Blocks Eclipse ... Read More

637 Views
Big projects are difficult to manage on mere text editors. You're likely to be more productive and less frustrated if you use an IDE in such cases. There are various types of IDE's and you should select the right one which fits your needs. Here's a list of best C/C++ IDE's for Linux.Netbeans for C/C++ Development − Netbeans is a free, open-source and popular cross-platform IDE for C/C++ and many other programming languages. Its fully extensible using community developed plugins.Eclipse CDT(C/C++ Development Tooling) − Just like NetBeans, it is also a free, open-source and popular cross-platform IDE for C/C++ and ... Read More

193 Views
Big projects are difficult to manage on mere text editors. You're likely to be more productive and less frustrated if you use an IDE in such cases. There are various types of IDE's and you should select the right one which fits your needs. Here's a list of best C/C++ IDE's for Window.Visual Studio − It is an IDE developed by Microsoft. This IDE has the best in class tooling for building, developing and profiling programs of C++ on Windows. Visual Studio also has a huge plugin store with a lot of plugins. It also integrates very smoothly with other Microsoft ... Read More

481 Views
There are many types of operators in C++. These can be broadly categorized as: arithmetic, relational, logical, bitwise, assignment and other operators.Arithmetic OperatorsAssume variable A holds 10 and variable B holds 20, then −OperatorDescription + Adds two operands. A + B will give 30-Subtracts second operand from the first. A - B will give -10*Multiplies both operands. A * B will give 200/Divides numerator by de-numerator. B / A will give 2%Modulus Operator and remainder of after an integer division. B % A will give 0++Increment operator, increases integer value by one. A++ will give ... Read More

2K+ Views
The mutable storage class in C++ is a property that gives you access to modify the non-static data members (not static data members) of a class, even when the object is declared as constant. This is mainly useful for scenarios where the data needs modification without affecting the logical state of the object, like caching, lazy initialization, and logging. Syntax class class_name { mutable data_type member_name; }; Here is the following syntax for the mutable storage class, which is declared using the mutable keyword and applied to only non-static data members of a class. Example #include ... Read More