int main()
{
    Int a=23;
    static int b=a;
    printf("%d,%d", b,a); 
     return 0;
}
What will be the output of this code?

Posted on by