Compiler Design 2023
Testcase c33 of Assignment 3:
// Each multi-variable declaration is treated as if the
// variables had been decleared by distinct statements.
// The following declaration is equivalent to
// int a, b, c, d;
int a;
int b;
int c;
int d;