Computer Science, asked by rohinidurgappa53723, 2 months ago

what is variable? explain declaration syntax with suitable example​

Answers

Answered by leenamp3
4

Explanation:

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.

Similar questions