Files
Embedded-Hacking/0x0023_functions-wo-params-wo-return/main.c
T
2024-04-20 14:07:14 -04:00

18 lines
231 B
C

#include <stdio.h>
#include "pico/stdlib.h"
#define FAV_NUM 42
void print_me(void);
int main(void) {
stdio_init_all();
while (true)
print_me();
}
void print_me(void) {
printf("FAV_NUM: %d\r\n", FAV_NUM);
}