What will be the output of the following code?
===================
Follow Guff @guffstack for more content on computer science, programming, technology.
===================
👉 Guff Stack👈
👉 Guff Stack👈
====================
👉 Comment your answers in comments section
@guffstack The second print output will be
Array
(
[0] => Array
(
[0] => a
[1] => b
)
[1] => Array
(
[2] => c
[3] => d
)
[2] => Array
(
[4] => e
)
)
@guffstack The first print output will be
Array
(
[0] => Array
(
[0] => a
[1] => b
)
[1] => Array
(
[0] => c
[1] => d
)
[2] => Array
(
[0] => e
)
)