Explorar el Código

"sixty-seven"

fdr hace 6 horas
commit
624b1cfaba
Se han modificado 1 ficheros con 7 adiciones y 0 borrados
  1. 7 0
      67.c

+ 7 - 0
67.c

@@ -0,0 +1,7 @@
+int write(int fd, char *buf, long len);
+
+int main() {
+	char six_seven = 67;
+	write(1, &six_seven, 1);
+	return 0;
+}