7.What will be the output of the follwing loop? #include main() { while(printf(%d, printf(az))) printf(by); }
Answers
Answered by
0
Explanation:
az wil be print like this:
az
az
az
az
.
.
till the loop ends
Answered by
1
Answer:
it will print azby infinite times
Explanation:
it will print azby infinite times
Similar questions