Select Git revision
Forked from
Peter Gerwinski / hp
286 commits behind the upstream repository.
Peter Gerwinski authored
if-7.c 228 B
#include <stdio.h>
int main (void)
{
int b = 7;
if (b)
{
printf ("100 / b = %d\n", 100 / b);
printf ("100 %% b = %d\n", 100 % b);
}
else
printf ("Bitte nicht durch 0 dividieren!\n");
return 0;
}