How the output of this is calculated | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 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;}

19th Sep 2019, 11:42 AM
Preity
Preity - avatar
0 Answers