This member has provided no bio about themself...

Comment History
jdot
jdot - - 1 comments @ Curly Bracket Programming Realm

hey guys whats up! I like the group - looks really cool. So the groups curly brackets inspired me to post my favorite for loop, who can tell me what its famous output is? (b = 1, a = 0)
for(i = 0; i < range; i++) {
printf("%d\n", b );
b = a + b;
a = b - a;
}

Good karma+2 votes