#include <stdio.h> #define PRICE 30; int main() { float num,total; num=10.5; total=num*PRICE; printf("total = %f \n", total); }