SubC
1 program
Added 2026-02-12T13:45:29Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 24186030b9 · authored 2026-02-12T14:46:14+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Fibonacci Sequence
Provenance: commit 24186030b9 · authored 2026-02-12T14:46:14+01:00 · agent claude-code · model sonnet · WebSearch disabled
int fib(int n) {
if (n <= 1)
return n;
return fib(n-1) + fib(n-2);
}
int main() {
int i;
i = 0;
while (i < 10) {
printf("%d\n", fib(i));
i = i + 1;
}
return 0;
}