fork download
  1. #include <stdio.h>
  2.  
  3. int waitwhat(int x[const]) {
  4. return 3;
  5. }
  6.  
  7. int main(void) {
  8. const int x[] = {1, 2};
  9. waitwhat(x);
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 9296KB
stdin
Standard input is empty
stdout
Standard output is empty