summaryrefslogtreecommitdiffhomepage
path: root/pt-br/c-pt.html.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'pt-br/c-pt.html.markdown')
-rw-r--r--pt-br/c-pt.html.markdown2
1 files changed, 0 insertions, 2 deletions
diff --git a/pt-br/c-pt.html.markdown b/pt-br/c-pt.html.markdown
index c3f62bc6..72877e84 100644
--- a/pt-br/c-pt.html.markdown
+++ b/pt-br/c-pt.html.markdown
@@ -384,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).
@@ -632,7 +631,6 @@ typedef void (*minha_função_type)(char *);
// = += -= *= /= %= &= ^= |= <<= >>= | direita para esqureda //
// , | esquerda para direita //
//-----------------------------------------------------------//
-
```
## Leitura adicional