20 lines
261 B
C

#include <stdio.h>
#include <stdlib.h>
int main() {
printf("Hello, World!\n");
return 0;
}
void simple_test() {
printf("This is a simple test function.\n");
}
int my_int;
char my_char;
float my_float;
int add(int a, int b) {
return a + b;
}