Recent questions tagged global-variable

8 8 votes
2 2 answers
224
224 views
What is the output of the following code?#include <stdio.h int a; static int b; int main() { printf("%d %d", a, b); return 0; }$\texttt{0\ 0}$ Garbage values $\texttt{1\ ...
To see more, click for the full list of questions or popular tags.