#include <stdio.h> #define PRICE 30 int main( void ) { int num = 10; int total = num * PRICE; printf( "total = %d\n", total ); return 0; }