Hi,
Can anyone explain me about the difference b/w a normal global variable and a global static variable.

ex:
if i have code like

int i;
static int j;
both are global variable, what is the difference b/w these two variables.

Thanks