Contact: aviboots(AT)netvision.net.il
39,950 questions
51,892 answers
573 users
#include <stdio.h> int main() { int l = 50, w = 21, h = 15; int boxvolume = l * w * h; printf("box volume = %d cm^3\n", boxvolume); } /* run: box volume = 15750 cm^3 */