Open errgrab opened 1 month ago
When you assign variables using the auto keyword you don't have any of variable assignment restrictions. Example:
int main(void) { auto int a = 0, b = 1; auto int c = 0, d = 1; auto int e = 0, f = 1; }
When you assign variables using the auto keyword you don't have any of variable assignment restrictions. Example: