Go back to Richel Bilderbeek's homepage.
Go back to Richel Bilderbeek's C++ page.
operator* is the operator to multiply two variables.
#include <cassert> int main() { const int x = 3; const int y = 4; const int z = x * y; assert(z == 12); }