lang-bootstrap/05/main.c

11 lines
252 B
C
Raw Normal View History

#include <stdio.h>
2022-02-13 12:51:21 -05:00
2022-02-13 15:07:26 -05:00
int main(int argc, char **argv) {
char buf[200] = {0};
sprintf(buf, "Hello, %d %.2f %g %s %p\n", 187, 77.3, 349e12, "Wow!", "yea");
// snprintf(buf, 200, "Hello\n"); //<- NOT WORKING
write(1, buf, sizeof buf);
return *buf;
2022-02-09 22:44:27 -05:00
}
2022-02-12 21:27:57 -05:00