Recent questions tagged variable-scope

1 votes
8 answers
2
Find the output of the following $“C”$ code :Main() { int x=20, y=35; x=y++ + x++; y=++y + ++x; printf (“%d, %d\n”, x, y); }$55, 93$$53, 97$$56, 95$$57, 94$
0 votes
1 answer
4
is the global variable store in code section of the process?
6 votes
2 answers
6
extern int i;int i=5;i=10;int main(){ printf("\ni=%d",i); return 0;}output is?
4 votes
2 answers
13
To see more, click for the full list of questions or popular tags.