fork download
  1. // Lab 8, Working with structs
  2. // Programmer : Maiar Khattab
  3. // Editor(s) used : Code Blocks 13.12
  4. // Compiler(s) used : Code Blocks 13.12
  5.  
  6. #include<stdio.h>
  7. int main()
  8. {
  9. int side;
  10. printf("enter side %d");
  11. scanf("%d",&side);
  12. printf("side is %d /n",side*side);
  13. return 0;
  14. }
  15.  
  16.  
  17.  
Success #stdin #stdout 0s 5268KB
stdin
 
stdout
enter side 502772920side is 1073479696 /n