InterviewSolution
Saved Bookmarks
| 1. |
Explain with an example how you can use input() function to assign integer value to a variable. |
|
Answer» Answer: >>> When we declare variables in C, we can assign a value to those variables. You can either declare the variable, and later assign a value, or assign the value RIGHT away when DECLARING the variable. C also allows you to type cast variables; that is, convert from one variable data type to another. |
|