๐Ÿ“ฆ jxtrt / cminus

๐Ÿ“„ input4-wrong.txt ยท 22 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
int i;

int f(int a) {
  double a;       // * Error 1
  return 34.5;  // * Error 2
}

void g(int b, double b) { // * Error 3
  return 3; // * Error 4
}

void g() {	// * Error 5
}

void main() {
  f();       // * Error 6
  f(3.2);    // * Error 7
  i=g();     // * Error 8
}