Open Source Your Knowledge, Become a Contributor
Technology knowledge has to be shared and made accessible for free. Join the movement.
Contents
¡Bienvenidos al curso de Programación II (2020-II-FESAc-UNAM)!
J.A. Orduz-Ducuara
Este curso está diseñado para los estudiantes de programación con conocimientos básicos en C. Algunos requisitos para tomar este curso:
- Tener conocimientos básicos en programación, en particular, en el lenguaje C.
- Tener conocimientos básicos en el idioma inglés, casi todo el material está en inglés.
- Tener habilidades de trabajo en equipo.
- Tener interés por aprender y enseñar; es decir, compartir el conocimiento.
- Tener respeto por las opiniones de otras personas y
- Tener/desarrollar sentido crítico.
Lea nuevamente las recomendaciones anteriores.
Review
The following lines contain information about concepts, statements and other; which are related to the previous course.
Purpose: remember some concepts.
Basic concepts
- Consider the next code
1
2
3
4
5
6
7
8
#include <stdio.h>
int main() {
printf("Hello World!");
return 0;
}
Enter to Rename, Shift+Enter to Preview
a. Modifie the previous code to print two messages and two variables: int and float.
b. Answer the following questions:
Consider the previous code. Is there libraries?
Consider the previous code. Does the main function contain two lines?
Go the next section to explore more about data type.
Bibliography and more material
- Javier's repository https://github.com/jaorduz/
Go Up
Open Source Your Knowledge: become a Contributor and help others learn. Create New Content