Code:
#include <stdio.h>
int main (void) {
	int Height;
	int Length;
	int Width;
    printf("What is the height of your rectangle?\n");
	scanf("%d",Height);
	printf("What is the length of your rectangle?\n");
	scanf("%d",Length);
	printf("What is the width of your rectangle?\n");
	scanf("%d",Width);
	printf("The area of your rectangle is %d",Width*Height*Length);
	return 0;
}
Im new to this programming thing and I just can't seem to get this to work..