mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-11-23 06:03:07 +03:00
fix: deleted not translated text
This commit is contained in:
parent
08331fe00f
commit
4d0127ff16
@ -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).
|
||||
|
Loading…
Reference in New Issue
Block a user