#include <stdio.h> int main() { int x = 5; int y = 2; x = x % y; printf("Der REst von 5/2 = %d\n", x); /* Rest = 1 */ return 0; }