ORCA/C
1 program
Added 2026-02-16T16:09:06Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: ORCA C
Provenance: commit ef36710b74 · authored 2026-02-16T17:10:23+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
Sum of Numbers
Provenance: commit ef36710b74 · authored 2026-02-16T17:10:23+01:00 · agent claude-code · model sonnet · WebSearch disabled
#include <stdio.h>
int main(void) {
int i, sum = 0;
for (i = 1; i <= 10; i++) {
sum += i;
}
printf("Sum of 1 to 10: %d\n", sum);
return 0;
}