Comment calculer 2 ^ 7 dans le code CPP

while (exponent != 0) {
    result *= base;
    --exponent;
}
Dead Dragonfly