Saved Bookmarks
| 1. |
What is constant arguments and write its syntax? |
|
Answer» The constant variable can be declared using const keyword. The const keyword makes variable , value stable. The constant variable should be initialized while declaring. The const modifier enables to assign an initial value to a variable that cannot be changed later inside the body of the function. Syntax: (const ) |
|