Saved Bookmarks
| 1. |
Write the output of the following code |
|
Answer» ONG>Answer:
INT main()
{
int val = 1;
do{
val++;
++val;
}while(val++>;25);
printf(“%d\n”,val);
RETURN 0;
} Explanation: |
|