How the output of this is calculated | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
+ 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 ответов