2) What are variables in VB? Write the syntax for declaring a variable?
Answers
Answered by
3
Answer:
A variable is the name of memory blocks, whose value can be changed at anytime (runtime), we can declare a variable by using following syntax: [storage_class] data_type variable_name [=value]; Here, [storage-class] and [=value] are optional. Note: if storage classis "static", initialization value must be provided.
Explanation:
Hope it will help you!!!
Similar questions