Bonus Questions: 1. What is the difference between a while loop and a do-while loop? 2. Is the size of an Array mutable after declaration? 3. What is the purpose of passing the address of a variable in scanf? 4. What are the various possible return values for scanf? 5. Why do we declare the main method as an int function with return 0 at the end?

PHOTO EMBED

Sat Jul 22 2023 16:33:02 GMT+0000 (Coordinated Universal Time)

Saved by @Codes

1) Whileloop the condition done before the statement while, Do while loop the condition is done after the statement.
2) No, it can not be changed.
3) Because the complier store the inputed integer or character in the variable.
4) 1 0 -1
5) Because 
content_copyCOPY