+ 1
what is the meanig of x*=5/*+6*/ in php?
4 Réponses
+ 13
x*=5 is the same as x=x*5
/*+6*/ this is a comment, so this is not executed
+ 10
@Calvin
That's a question of the quiz and he didn't copy the full statement, something is missing after the comment.
@Yaroslav Tbh, I don't know anything about php ^^
+ 2
If this is Php code, it should be
x*=5; /*+6*/
It won't run without a semicolon.
0
lol, Tashi, you are super brain, I don't recognize comment in this line