summaryrefslogtreecommitdiffhomepage
path: root/pt-br/c-pt.html.markdown
diff options
context:
space:
mode:
authorBoris Verkhovskiy <boris.verk@gmail.com>2024-04-04 04:26:14 -0700
committerGitHub <noreply@github.com>2024-04-04 04:26:14 -0700
commit4d59048f0df8441e5ad2c2c440e8d54b0e9c11b6 (patch)
treefa2dbdd40da35b3c27f928f1112ea43193a7482e /pt-br/c-pt.html.markdown
parentb38d4437120e700646a45dff68b7c4ff3f7109c0 (diff)
parent327001f58739489b41f6b1f7bbc8be900847b381 (diff)
Merge branch 'master' into patch-2
Diffstat (limited to 'pt-br/c-pt.html.markdown')
-rw-r--r--pt-br/c-pt.html.markdown6
1 files changed, 2 insertions, 4 deletions
diff --git a/pt-br/c-pt.html.markdown b/pt-br/c-pt.html.markdown
index 4e55f068..22a86376 100644
--- a/pt-br/c-pt.html.markdown
+++ b/pt-br/c-pt.html.markdown
@@ -1,6 +1,6 @@
---
-language: c
-filename: learnc.c
+language: C
+filename: learnc-pt.c
contributors:
- ["Adam Bard", "http://adambard.com/"]
- ["Árpád Goretity", "http://twitter.com/H2CO3_iOS"]
@@ -10,7 +10,6 @@ translators:
- ["Cássio Böck", "https://github.com/cassiobsilva"]
- ["Heitor P. de Bittencourt", "https://github.com/heitorPB/"]
lang: pt-br
-filename: c-pt.el
---
Ah, C. Ainda é **a** linguagem de computação de alta performance.
@@ -385,7 +384,6 @@ int main() {
// Por exemplo, quando um array é passado para uma função ou é atribuído a um
// ponteiro, ele transforma-se (convertido implicitamente) em um ponteiro.
// Exceções: quando o array é o argumento de um operador `&` (endereço-de):
- // Exceptions: when the array is the argument of the `&` (address-of) operator:
int arr[10];
int (*ptr_to_arr)[10] = &arr; // &arr não é do tipo `int *`!
// É do tipo "ponteiro para array" (de `int`s).