C - Write program to display the result of multiplying the values 8, 14, and 25

Requirements

Write a program that displays the result of multiplying the values 8, 14, and 25.

Demo

#include <stdio.h>

int main()/*from   w  ww  .j a  va2s. c  om*/
{
    printf("The result is %d\n",8*14*25);
    return(0);
}

Result

Related Quiz