fork download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. double pows[] = {1, 2, 3};
  6. unsigned char N = sizeof(pows) / sizeof(*pows);
  7. size_t *i = (sizeof(*pows) * N);
  8. while (i-- > pows) printf("%.*f ", 1, pows);
  9. return 0;
  10. }
Success #stdin #stdout 0s 5316KB
stdin
Standard input is empty
stdout
Standard output is empty