Unnamed
public text v1 · immutable#include <stdio.h>
int test = 'test';
int main() {
switch (test) {
case 'test':
printf("here\n");
break;
};
return 0;
}
#include <stdio.h>
int test = 'test';
int main() {
switch (test) {
case 'test':
printf("here\n");
break;
};
return 0;
}