#include <stdlib.h>#include <stdio.h>intmain(intargc,char*argv[]){floata,c;intb;b=200*300*400*500;a=(3.14+1e20)-1e20;printf("the b is %d\n",b);printf("the a is %f\n",a);c=3.14+(1e20-1e20);printf("the c is %f\n",c);returnEXIT_SUCCESS;}/* ---------- end of function main ---------- */