I tested below code:
printf("I am %s.", 'cool');
Output: I am cool.
And then I added, echo with printf:
echo printf("I am %s.",'cool');
Output: I am cool.10
What is this 10? I changed values and this suffixed number kept on changing. Can anyone tell me what is happening here? I am just curious. Does this code has any significance or this is just a weird behavior I should forget?