Write a program that displays the result of multiplying the values 8, 14, and 25.
#include <stdio.h> int main()/*from w ww .j a va2s. c om*/ { printf("The result is %d\n",8*14*25); return(0); }