The expression a×b can be represented as a _______ b in C++.
- *
- %
- +
- -
In C++, the asterisk () is used as the multiplication operator. So, "a×b" is represented as "ab" in C++ programming.
Loading...
Related Quiz
- Which of the following data types is not a primitive data type in C++?
- In C++20, using enum with _______ allows specifying the underlying type and scope.
- The concept of Streams in C++ was introduced in the standard with _______.
- What is the purpose of a conversion constructor in C++?
- What is the primary purpose of the ofstream class in file handling?