+ 1
How the output of this is calculated
Consider the following C program: #include <stdio.h> int r() { static int num=7; return num--;} int main() { for (r();r();r()) printf(“%d”,r()); return 0;}
0 Resposta
Consider the following C program: #include <stdio.h> int r() { static int num=7; return num--;} int main() { for (r();r();r()) printf(“%d”,r()); return 0;}