Files
Embedded-Hacking/0x0017_constants/main.c
T
2024-04-20 14:07:14 -04:00

16 lines
267 B
C

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