R
Raxit
Can A C Program having static Variable in Structure is possible.....
i.e.
struct A
{
int a;
static int b;
};
if yes then how to access this static variable.....
As we done in C++ with A::b{i.e. using Scope Resolution}
i.e.
struct A
{
int a;
static int b;
};
if yes then how to access this static variable.....
As we done in C++ with A::b{i.e. using Scope Resolution}