cblc/exercicios/01/main.c

11 lines
131 B
C
Raw Normal View History

2025-06-01 20:28:08 -03:00
#define EXIT_SUCCESS 0
int puts(const char *string);
int main(void) {
puts("Salve, simpatia!");
return EXIT_SUCCESS;
}