fork download
  1. // C code
  2.  
  3. // This program will provide options for a user to calculate the square
  4.  
  5. // or cube of a positive Integer input by a user.
  6.  
  7. // Developer: Faculty CMIS102
  8.  
  9. // Date: Jan 31, XXXX
  10.  
  11. #include <stdio.h>
  12.  
  13. int Shrink(int value);
  14.  
  15.  
  16. int Shrink(int value)
  17.  
  18. {
  19. return value/2;
  20.  
  21. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
10
compilation info
/usr/lib/gcc/x86_64-linux-gnu/6/../../../x86_64-linux-gnu/Scrt1.o: In function `_start':
(.text+0x20): undefined reference to `main'
collect2: error: ld returned 1 exit status
stdout
Standard output is empty