1.

Write a program to display the area of square ​

Answer»

C PROGRAM #INCLUDE int MAIN() { int s=13; int area_square=s*s; PRINTF("Area of the square=%d",area_square); }Explanation:



Discussion

No Comment Found