1.

How constants can be declared in a program? Give one example.

Answer»

Syntax: const <data type> <identifier> =

<value>;

For Example:

const int size = 50;



Discussion

No Comment Found

Related InterviewSolutions