Upload your C source file and get a shareable download link
// Simple C Hello World
#include <stdio.h>
int main() {
printf("Hello, World!\n");
return 0;
}
// Function example
int add_numbers(int a, int b) {
return a + b;
}
// Struct example
struct Point {
int x;
int y;
};