Compiler Design 2023

Testcase c32 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;
// int b;
// int c;
// int d;

int a, b, c, d;

c32