Initialization of a Variable in C
After a variable is declared it may be required to initialize it. Initialization of a variable means assigning some value to it. However, technically there is no problem with using a variable without initializing it. But logically it is wrong. When a variable is declared but not initialized it contains some random bogus but valid … Read more