modulo c++

C++
#include <iostream>
using namespace std;

int main() {
	cout << 11%3; // Prints 2
}
Source

Also in C++: