yggdrasil/test.c

10 lines
159 B
C
Raw Normal View History

2024-11-11 15:19:36 +02:00
#include <unistd.h>
#include <stdio.h>
int main() {
char buf[512];
int v = 1234 + 3;
snprintf(buf, sizeof(buf), "Hello %d\n", v);
return 0;
}