KodeGod.com

041. Technical interview question: Give the output of following code

 
static struct student
{
        int a;
        int b;
} struct_var   {2,3};
int main()
{
        printf("%d %d", struct_var.a, struct_var.b);
        return 0;
}