0
What is the difference between declaring each variable with a type and declaring multiple variables of the same type?
int a; int b; int c; int a, b, c;
2 Antworten
+ 2
There's no technical difference, just a matter of preference
+ 1
You can minimize the length of your code