Skip to content

Commit

Permalink
Added operators-in-c
Browse files Browse the repository at this point in the history
  • Loading branch information
World-X committed Sep 27, 2024
1 parent a75751a commit c20f59c
Show file tree
Hide file tree
Showing 6 changed files with 377 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/PostPage.astro
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ if (true) {
}
}
const updatedPostIDs = [4, 10]
const updatedPostDates = ['2024-09-26', '2024-09-24']
const updatedPostDates = ['2024-09-27', '2024-09-24']
if (updatedPostIDs.includes(id)) {
// if it was updated in the last 5 days
const updatedPostIndex = updatedPostIDs.indexOf(id)
Expand Down
2 changes: 1 addition & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export const navBarConfig: NavBarConfig = {
export const profileConfig: ProfileConfig = {
avatar: 'assets/images/avatar.jpg', // Relative to the /src directory. Relative to the /public directory if it starts with '/'
name: 'Grupo 932 - ISyTE',
bio: 'v1.2.2',
bio: 'v1.2.3',
links: [
/*
{
Expand Down
6 changes: 5 additions & 1 deletion src/content/posts/c-cpp-programming-course-book.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ id: 4
La versión (formalmente llamado *estándar abierto*) pública más reciente de C es [C18](https://en.wikipedia.org/wiki/C17_(C_standard_revision)), pero se espera que la [C23](https://en.wikipedia.org/wiki/C23_(C_standard_revision)) se vuelva pública en 2024.
:::

:::note[NOTA]
A partir de [Expresiones númericas y operadores (en C)](/grupo932/posts/operators-in-c/), el libro utilizado para extraer información cambió a la quinta edición. Se espera que la información sea más actualizada y relevante.
:::

# Índice
A continuación se muestra una tabla de contenido de todos los artículos en este sitio cuales tienen contenido que fueron principalmente extraídos del libro, en orden cronológico.
1. [Caracteres de C](/grupo932/posts/characters-in-c/)
Expand All @@ -22,4 +26,4 @@ A continuación se muestra una tabla de contenido de todos los artículos en est
4. [Literales (en C)](/grupo932/posts/literals-in-c/)
5. [Identificadores, palabras clave y comentarios (en C)](/grupo932/posts/identifiers-keywords-comments-in-c/)
6. [Constantes y variables (en C)](/grupo932/posts/constants-and-variables-in-c/)

7. [Expresiones númericas y operadores (en C)](/grupo932/posts/operators-in-c/)
1 change: 1 addition & 0 deletions src/content/posts/constants-and-variables-in-c.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,4 @@ En nuestro ejemplo, se ha declarado la variable `c` antes de la función `main`

Según lo expuesto, la variable `c` es global y las variables `i`, `f` y `d` son locales.

Siguiente artículo: [Expresiones númericas y operadores (en C)](/grupo932/posts/operators-in-c/)
Loading

0 comments on commit c20f59c

Please sign in to comment.