InterviewSolution
Saved Bookmarks
| 1. |
Consider the following code<?php$count = 12;do{printf(“%d squared=%d<br/>”,Scount, pow($count,2));} while($count<4);?>What will be the output of the code.(a) 12 squared 141(b) 12 squared=141(c) “12 squared=141”(d) Execution error |
|
Answer» (d) Execution error |
|