Find Area: C Program Find Area: C Program #include<stdio.h> void main() { int w,l,area; printf("Enter Length\n"); scanf("%d",&l); printf("Enter Width\n"); scanf("%d",&w); area=l*w; printf("Area Is %d",area); getch(); } 25 Oct 2015
0 comments:
Post a Comment
Click to see the code!
To insert emoticon you must added at least one space before the code.