fork download
  1. #include <stdio.h>
  2. void power3(unsigned long result[ ]);
  3. void print_result(unsigned long result[ ]);
  4.  
  5. int main(void) {
  6. // your code goes here
  7. int k;
  8. unsigned long result[7*(k+1)];
  9. if (result[0]){
  10. result[0]=1;
  11. }
  12. // power3(unsigned long result[ ]);
  13. return 0;
  14. }
  15. //void power3(unsigned long result[ ]){
  16. // result[]=3*result[];
  17. //}
  18.  
Success #stdin #stdout 0s 5276KB
stdin
Standard input is empty
stdout
Standard output is empty