If I have a C file like below, what is the difference between i
and j
?
#include <stdio.h>
#include <stdlib.h>
static int i;
int j;
int main ()
{
//Some implementation
}
See Question&Answers more detail:osIf I have a C file like below, what is the difference between i
and j
?
#include <stdio.h>
#include <stdlib.h>
static int i;
int j;
int main ()
{
//Some implementation
}
See Question&Answers more detail:os