# include <stdio.h> int main(void) { float a; float b; a = 3.1415; b = a % 0.01; printf("%f\n", b); return 0; }