fork download
  1. #include<stdio.h>
  2. #include<math.h>
  3. int main()
  4. {
  5. float a,area;
  6. printf("Enter the value of a:");
  7. scanf("%f",&a);
  8. area=(sqrt(3)/4)*a*a;
  9. printf("%f",area);
  10. return 0;
  11. }
Success #stdin #stdout 0s 5320KB
stdin
100
stdout
Enter the value of a:4330.126953