fork download
  1. #include<stdio.h>
  2.  
  3. int main() {
  4. int side, area;
  5.  
  6. printf("\nEnter the Length of Side : ");
  7. scanf("%d", &side);
  8.  
  9. area = side * side;
  10. printf("\nArea of Square : %d", area);
  11.  
  12. return (0);
  13. }
  14.  
Success #stdin #stdout 0s 4552KB
stdin
Standard input is empty
stdout
Enter the Length of Side : 
Area of Square : 1073610756