Espaços nominais
Variantes
Acções

Diferenças entre edições de "cpp/io/c/fgetc"

Da cppreference.com
< cpp‎ | io‎ | c
m (r2.7.3) (Robô: A adicionar: de, en, es, it, ru)
m (Use {{lc}}. Update links. Various fixes.)
 
Linha 10: Linha 10:
  
 
===Parâmetros===
 
===Parâmetros===
{{param list begin}}
+
{{begin}}
{{param list item | stream |{{tr| de ler o caráter de | to read the character from }}}}
+
{{| stream |{{tr| de ler o caráter de | to read the character from }}}}
{{param list end}}
+
{{end}}
  
 
===Valor de retorno===
 
===Valor de retorno===
{{tr|Próximo caractere do fluxo ou {{c|EOF}} se ocorreu um erro ou o fim do arquivo foi alcançado.|Next character from the stream or {{c|EOF}} if an error has occurred or the end of file has been reached.}}
+
{{tr|Próximo caractere do fluxo ou {{|EOF}} se ocorreu um erro ou o fim do arquivo foi alcançado.|Next character from the stream or {{|EOF}} if an error has occurred or the end of file has been reached.}}
  
 
===Veja também===
 
===Veja também===
{{dcl list begin}}
+
{{begin}}
{{dcl list template | cpp/io/c/dcl list gets}}
+
{{| cpp/io/c/gets}}
{{dcl list template | cpp/io/c/dcl list fputc}}
+
{{| cpp/io/c/fputc}}
{{dcl list template | cpp/io/c/dcl list ungetc}}
+
{{| cpp/io/c/ungetc}}
{{dcl list see c | c/io/fgetc | fgetc | getc}}
+
{{see c | c/io/fgetc | fgetc | getc}}
{{dcl list end}}
+
{{end}}
  
 
[[de:cpp/io/c/fgetc]]
 
[[de:cpp/io/c/fgetc]]

Edição actual desde as 09h19min de 2 de julho de 2013

 
 
De entrada / saída da biblioteca
I / O manipuladores
C estilo de I / O
Buffers
Original:
Buffers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(obsoleta)
Streams
Original:
Streams
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Abstrações
Original:
Abstractions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
File I / O
Original:
File I/O
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Cordas I / O
Original:
String I/O
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Matriz de I / O
Original:
Array I/O
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(obsoleta)
(obsoleta)
(obsoleta)
Tipos
Original:
Types
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Interface de categoria de erro
Original:
Error category interface
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
 
C estilo de I / O
Funções
Original:
Functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Arquivo de acesso
Original:
File access
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Directa de entrada / saída
Original:
Direct input/output
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Não formatado entrada / saída
Original:
Unformatted input/output
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Formatado de entrada / saída
Original:
Formatted input/output
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Arquivo de posicionamento
Original:
File positioning
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
De tratamento de erros
Original:
Error handling
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Operações em arquivos
Original:
Operations on files
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
 
Definido no cabeçalho <cstdio>
int fgetc( FILE *stream );
int getc( FILE *stream );
Lê o próximo caractere do fluxo de entrada. getc() pode ser implementada como uma macro.
Original:
Reads the next character from the given input stream. getc() may be implemented as a macro.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar] Parâmetros

stream -
de ler o caráter de
Original:
to read the character from
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar] Valor de retorno

Próximo caractere do fluxo ou EOF se ocorreu um erro ou o fim do arquivo foi alcançado.
Original:
Next character from the stream or EOF if an error has occurred or the end of file has been reached.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar] Veja também

lê uma cadeia de caracteres de stdin
Original:
reads a character string from stdin
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(função) [edit]
escreve um personagem para um fluxo de arquivo
Original:
writes a character to a file stream
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(função) [edit]
coloca um personagem de volta em um fluxo de arquivo
Original:
puts a character back into a file stream
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(função) [edit]
Documentação C para fgetc, getc