โช Choose the correct option.
What will be output of the following “c” code?
#include
int main(){
int a=5;
static int b=a;
printf("%d %d",a,b);
return 0;
}
#include
int main(){
int a=5;
static int b=a;
printf("%d %d",a,b);
return 0;
}