WPM
100
CPM
100
Errors
0
Time
15Min
Accuracy
100%
Start C++ Programs code typing Practice. C++ Constant Qualifier, Array typing Practice, cpp two dimensional array and operators typing practice, for loop in cpp typing practice.Click on the area below to start typing.

S.No.Paragraph : Practice repeatedly whatever you would like most for full fifteen minutes Lessionsclick to Practice
1#include using namespace std; int main() { int a = 11; int b = 5; int c; cout << "a + b is :" << a+b << endl; //11+5 cout << "a - b is :" << a-b << endl; //11-5 cout << "a * b is :" << a*b << endl; //11*5 cout << "a / b is :" << a/b << endl; //11/5 cout << "a % b is :" << a%b << endl; //11%5 cout << "a++ is :" << a++ << endl; //11++ cout << "a-- is :" << a-- << endl; //12-- return 0; }1.4 cpp operators typing practice