fork download
  1. #include <stdio.h>
  2.  
  3. typedef struct {
  4. int tos;
  5. char stackarr[];
  6. }STACK;
  7.  
  8. STACK paren = {.tos = -1};
  9.  
  10. int main(void) {
  11. // your code goes here
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 2164KB
stdin
Standard input is empty
stdout
Standard output is empty