0
Veriables beginning with capital letter are called constant.can we apply this in c also?
2 Answers
+ 2
No, any case can be used to name a constant but it must be preceded by the following word (#define) just a little bit similar to the PHP way, no equal to sign after var name
eg; #define age 18
+ 1
thanx got it