Computer Science, asked by thekingstararpan25, 10 months ago

What will be the sizes of the
following constants : a) '#'
b)len(""abc\bc""") *​

Answers

Answered by Anonymous
0

Answer:

C Constants are also like normal variables. But, only difference is, their values can not be modified by the program once they are defined.

Constants refer to fixed values. They are also called as literals

Constants may be belonging to any of the data type.

Syntax:

const data_type variable_name; (or) const data_type *variable_name;

Similar questions