Uh... no Praxxtor, that's just you. Where to place semicolons, commas and stuff like that is determined by the grammar of the language. for example, a function call looks like this:
|
functionname(argument1[, argument2[, ... , argumentn]])
|
(the ['s and ]'s just indicate that the section is optional here, you don't actually write those in your code).
Simplified, there are 3 steps in programming:
1) Figure out what you want to.
2) Figure out what steps you need to do to achieve that.
3) Express the necessary steps in the programming language.
And yes, you can read as many tutorials as you want, you will never learn how to do step 1 and 2 - you either already have to have these skills, or acquire them through practice (most of the times people already have a basic understanding of what they want to do, but don't know yet how to break down problems so that they can easily be expressed as programs).
The only things tutorials are really good for is to show how a basic program looks like and how you can use parts of a program... once you got that much down, tutorials won't really help anymore. And of course you don't think "I do this because the tutorial said so", ideally you would understand what exactly you are doing, and can thus also easily tell why you are doing it.