GPP
1 program
Added 2026-03-05T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Generic PreProcessor
Provenance: commit 9cb2f78391 · authored 2026-03-05T10:44:52+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Circle Area and Circumference Macros
Provenance: commit 9cb2f78391 · authored 2026-03-05T10:44:52+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
#define PI 3.14159
#define AREA(r) PI * r * r
#define CIRC(r) 2 * PI * r
Circle with radius 5:
Area = AREA(5)
Circumference = CIRC(5)
Circle with radius 10:
Area = AREA(10)
Circumference = CIRC(10)
#define MAX(a,b) (a >= b ? a : b)
Maximum of 10 and 7 is MAX(10, 7)
Maximum of 3 and 9 is MAX(3, 9)