#include <stdio.h>void func(){int x = 0;static int y = 0;+; y++;printf( "%d -- %dn", x, y );}int main(){func();func();return 0;}printf("%dn", 64>>3);What will the sample code above produce when executed?A. 8B. 16C. 32D. 256

 

This Question is not yet answered!

 

Related Open Questions