I know the above code outputs 323
But need an explanation on how is it outputting 323
Anybody can pls explain?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Here
echo (2).(3*print(3));
Step1:(Starting execution)
Step 2:(Print action will take place)
Step 3:(Multiplication operation)
Step 4:(Prints the data)
Print has more priority then echo thus it prints 3 first later 2 and 3