// PURPOSE Just test %
//
// cc modulo.cc -o modulo; ./modulo
//
#include <stdio.h>

int main()
{
   int dividend = 15;
   for( int i=0; i<32; i++ )
   {
      printf("%d mod %d = %d\n", i, dividend, i%dividend);
   }
   return 0;
}
