If a variable is declared as static in a function\'s scope it is only initialized once and retains its value between function calls. What exactly is its lifetim
static
The Static variables are come into play once the program execution starts and it remain available till the program execution ends.
The Static variables are created in the Data Segment of the Memory.