Get invaluable Interview and Career Tips delivered directly to your inbox. Get your news alert set up today, Once you confirm your Email subscription, you will be able to download Job Inteview Questions Ebook . Please contact me if you there is any issue with the download.
#include <stdio.h>void func(){int x = 0;static int y = 0;x++; y++;printf( "%d -- %dn", x, y );}int main(){func();func();return 0;}What will the code above print when it is executed?A. 1-- 1 1 - 1B. 1 -- 1 1 -- 2C. 1 -- 1 2 -- 1D. 1 -- 0 1 -- 0
Related Answered Questions
Related Open Questions