Closed lhl2617 closed 5 years ago
In switch1_driver.c, Instead of
switch1_driver.c
int g(); int main() { int x; return !((g(0)+g(1))==21); }
did you mean
int g(int x /* missing arg */); int main() { int x; return !((g(1)+g(2))==21); /* wrong args */ }
Thank you for pointing this out. I will fix the testcase.
In
switch1_driver.c
, Instead ofdid you mean