1.

Write a program to find area of rectangle in c language​

Answer»

C Program#include INT MAIN(){int width=5;int HEIGHT=10;int area=width*height;printf("Area of the RECTANGLE=%d",area);



Discussion

No Comment Found