Files
Calculator/src/main.c

8 lines
121 B
C
Raw Normal View History

2026-02-28 13:59:02 -06:00
#include <stdlib.h>
#include <stdio.h>
int main(int argc, char *argv[]) {
puts("Hello");
return EXIT_SUCCESS;
}