Join Nostr
2024-09-24 17:57:03 UTC

kirby: classic edition on Nostr: Write code the GNU way. char buf[101] = {0}; sprintf(buf, "%100s", "hello world"); ...

Write code the GNU way.

char buf[101] = {0};
sprintf(buf, "%100s", "hello world");
puts(buf);