InterviewSolution
Saved Bookmarks
| 1. |
Write a program to print numbers from 1 to 100 without making use of conditional operators? |
| Answer» VOID MAIN (){ INT i=0; while (100 – i++) PRINTF ("%d", i);} | |