Saved Bookmarks
| 1. |
Write php code to print 5,10,15,20,25______50 using for loop please answer |
|
Answer» Answer: for(i=5;i<=50,i++) from 5 on words its TAKE and UPTO 50 it prints and after its check EQUALS to 50 and at last its terminates. |
|