Solution for Exercise 5-11

ex0511

#include <stdio.h>

int main()
{
	printf("%d/%d=%d\n",2,5,2/5);
    return(0);
}

Output

2/5=0