summaryrefslogtreecommitdiffhomepage
path: root/es-es/c-es.html.markdown
diff options
context:
space:
mode:
authorjulianaortga <julianandreao@gmail.com>2016-06-26 07:38:29 -0500
committerven <vendethiel@hotmail.fr>2016-06-26 14:38:29 +0200
commit243ef338ab06a030ae9461a4162ae53f8f9603a3 (patch)
tree94f12a2f76c20ebd90b7929d617cadf473c5e6f8 /es-es/c-es.html.markdown
parentd1216a4253c1b03641c10b171030d04227ad8408 (diff)
update further reading [c/es] (#1829)
Diffstat (limited to 'es-es/c-es.html.markdown')
-rw-r--r--es-es/c-es.html.markdown14
1 files changed, 12 insertions, 2 deletions
diff --git a/es-es/c-es.html.markdown b/es-es/c-es.html.markdown
index 5d3aae0c..8bc1eabb 100644
--- a/es-es/c-es.html.markdown
+++ b/es-es/c-es.html.markdown
@@ -418,8 +418,18 @@ typedef void (*my_fnp_type)(char *);
## Otras lecturas
-Lo mejor que puedes en contrar es una copia de [K&R, aka "The C Programming Language"](https://en.wikipedia.org/wiki/The_C_Programming_Language)
+Lo mejor que puedes encontrar es una copia de [K&R, aka "The C Programming Language"](https://en.wikipedia.org/wiki/The_C_Programming_Language). Es *el*
+libro de C, escrito por Dennis Ritchie, creador de C y Brian Kernighan. Aún así,
+se cuidadoso, es antiguo, contiene algunas inexactitudes, y algunas prácticas
+han cambiado.
-Otro buen recurso es [Learn C the hard way](http://c.learncodethehardway.org/book/)
+Otro buen recurso es [Learn C the hard way](http://c.learncodethehardway.org/book/).
+
+Si tienes una pregunta, lee [compl.lang.c Frequently Asked Questions](http://c-faq.com).
+
+Es muy importante utilizar el espaciado y la sangría apropiados y ser coherente
+con su estilo de codificación en general. El código legible es mejor que el
+código rápido. Para adoptar un buen estilo de codificación, vea el
+[Estilo de codificación del kernel Linux] (https://www.kernel.org/doc/Documentation/CodingStyle).
Aparte de eso, Google es tu amigo.