w3resource

C++ Exercises practice with solution

What is C++ Programming Language?

C++ is a general-purpose programming language. It has imperative, object-oriented and generic programming features, while also providing facilities for low-level memory manipulation.

It was designed with a bias toward system programming and embedded, resource-constrained and large systems, with performance, efficiency and flexibility of use as its design highlights. Many vendors provide C++ compilers, including the Free Software Foundation, Microsoft, Intel, and IBM.

The best way we learn anything is by practice and exercise questions. We have started this section for those (beginner to intermediate) who are familiar with C++ programming.

Hope, these exercises help you to improve your C++ programming coding skills. Currently, following sections are available, we are working hard to add more exercises .... Happy Coding!

List of C++ Exercises

More to Come !

Popularity of Programming Language
Worldwide, June 2023 compared to a year ago:

`
Rank Change Language Share Trend
1 Python 27.66 % +0.2 %
2 Java 16.16 % -1.3%
3 Javascript 9.44 % -0.2%
4 C# 6.79 % -0.5%
5 C/C++ 6.6 % -0.1 %
6 PHP 5.04 % -0.4 %
7 R 4.17% -0.3%
8 TypeScript 3.11 % +0.5%
9 Swift 2.38 % +0.2%
10 up arrow Rust 2.24% +0.8%
11 down arrow Objective-C2.07% -0.1%
12 down arrow Go 2.02% +0.3%
13 down arrow Kotlin 1.82 % +0.1%
14 down arrow Matlab 1.55 % -0.2%
15 Ruby 1.12% +0.2%
16 up arrow Ada 0.97 % +0.3 %
17 up arrow Powershell 0.94 % +0.2 %
18 down arrow VBA 0.87 % -0.0 %
19 down arrow Dart 0.82 % -0.0 %
20 up arrow Lua 0.64 % +0.1 %
21 down arrow Scala 0.59 % -0.1 %
22 up arrow Abap 0.53 % +0.1 %
23 down arrow Visual Basic 0.48 % -0.1 %
24 down arrow Julia 0.42 % +0.0 %
25 down arrow Groovy 0.42 % +0.0 %
26 up arrow Cobol 0.41 % +0.2 %
27 down arrow Perl 0.35 % +0.1 %
28 down arrow Haskell 0.24 % -0.0 %
29 Delphi/Pascal 0.14 % +0.1 %

Source : https://pypl.github.io/PYPL.html

TIOBE Index for June 2023

June 2023 June 2022 Change Programming Language Ratings Change
1 1 Python 12.46% +0.26%
2 2 C 12.37% +0.46%
3 4 up arrow C++ 11.36% +1.73%
4 3 down arrow Java 11.28% +0.81%
5 5 C# 6.71% +0.59%
6 6 Visual Basic 3.34% -2.08%
7 7 JavaScript 2.82% +0.73%
8 13 up arrow PHP 1.74% +0.49%
9 8 down arrow SQL 1.47% -0.47%
10 9 down arrow Assembly language 1.29% -0.56%
11 12 up arrow Delphi/Object Pascal 1.26% -0.07%
12 24 up arrow MATLAB 1.11% +0.48%
13 25 up arrow Scratch 1.02% +0.43%
14 15 up arrow Go 1.00% -0.02%
15 26 up arrow Fortran 0.99% +0.44%
16 11 down arrow Classic Visual Basic 0.96% -0.36%
17 16 down arrow R 0.94% -0.04%
18 19 up arrow Ruby 0.94% +0.19%
19 10 down arrow Swift 0.93% -0.62%
20 27 up arrow Rust 0.91% +0.38%

Source : https://www.tiobe.com/tiobe-index/



Follow us on Facebook and Twitter for latest update.

C++ Programming: Tips of the Day

Static member initialization in a class template

Just define it in the header:

template<typename T>
struct S
{
static double something_relevant;
};

template<typename T>
double S<T>::something_relevant = 1.5;

Since it is part of a template, as with all templates the compiler will make sure it's only defined once.

Ref: https://bit.ly/3MxgJH9

 





We are closing our Disqus commenting system for some maintenanace issues. You may write to us at reach[at]yahoo[dot]com or visit us at Facebook