Showing posts with label C Program to Calculate Area of a Square with explanation and example. Show all posts
Showing posts with label C Program to Calculate Area of a Square with explanation and example. Show all posts

Saturday, 8 April 2017

C Program to Calculate Area of a Square


Program :- 

#include<stdio.h>
main()
{
   float len,area;
   printf("enter length : \n");
   scanf("%f ",&len);
   printf("area =  %f ", len * len);
}
 
Output :-

enter length :
6

area = 36

How to Invert an SVG image using CSS ?

You can invert your svg easily by using following css code svg { -webkit-filter: invert(100%); /* safari 6.0 - 9.0 */ filter...