+ 1
What is the output of this program?
#include<studio.h> int main() { for(function();function();function()) { printf("%d",function()); } } int function() { static int n = 13; return --n; }
3 ответов
+ 2
First error, no <studio.h>, fixed that and got the code running into infinite loop.
In Code Playground you most probably will get a time limit warning.
+ 3
It's an error from the start.
variables and keywords are case sensitive, meaning "int" ≠ "Int"
+ 2
Well noted... I have edited.. please check now