Vertaling van "const char" in Engels
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
El tipo del primer string es el habitual const char.
The type of the first string is the usual const char.
La primera clase, contenida dentro de comillas dobles, produce un arreglo terminado en null de tipo const char.
The first kind, contained within double quotes, produces a null-terminated array of type const char.
El tipo del primer string es el habitual const char[].
The type of the first string is the usual const char[].
En algunos compiladores, usar const en ambos lados del tipo -por ejemplo, const char const- genera una advertencia pero no un error.
On some implementations, using const on both sides of the type (for instance, const char const) generates a warning but not an error.
La declaración de una función variádica utiliza una elipsis como último parámetro, por ejemplo int printf(const char* format,...);.
The declaration of a variadic function uses an ellipsis as the last parameter, e.g. int printf(const char* format,...);.
Para declarar una función variadic, los puntos suspensivos se usa como el último parámetro, por ejemplo, int printf(const char *format,...);.
To declare a variadic function, an ellipsis is used as the last parameter, e.g. int printf(const char *format,...);.
El mensaje "msg" debe ser una hilera (char*) literal o un objeto que pueda convertirse en (const char ).
Mensaje "msg" must be a literal (char*) string or and object that can be converted into a (const char ).
Si no está presente un modificador l: se espera que el argumento const char sea un puntero a un vector (array) de tipo carácter (puntero a una cadena de caracteres).
If no l modifier is present: the const char argument is expected to be a pointer to an array of character type (pointer to a string).
Para tipos de datos simples -excepto punteros-, el calificador const puede situarse en ambos lados del tipo -es decir, const char foo = 'a'; equivale a char const foo = 'a';-.
It can go on either side of the type for historical reasons (that is, const char foo = 'a'; is equivalent to char const foo = 'a';).
El const char *arg y puntos suspensivos siguientes en las funciones execl, execlp, y execle pueden ser contemplados como arg0, arg1,..., argn.
The const char *arg and subsequent ellipses in the execl(), execlp(), and execle() functions can be thought of as arg0, arg1,..., argn.
También puede utilizar la función fprintf int (FILE fp, const char formato,...) para escribir una cadena en un archivo.
You can use int fprintf(FILE *fp, const char *format,...) function as well to write a string into a file.
El nuevo atributo centinela hace que el compilador emita una advertencia si una función tal como execl(char *path, const char *arg,...), que requiere un terminador de lista en NULL, le esté faltando el NULL.
The new sentinel attribute causes the compiler to issue a warning if a function such as execl(char *path, const char *arg,...), which requires a NULL list terminator, is missing the NULL.
Ya tenemos casi adaptado el fichero, hay que borrar la primera',' y darle un nombre al array (const char RihannaScreen), es muy importante poner la palabra 'const' ya que si no la ponemos SDCC cargará cada dato mediante instrucciones LD.
We have almost adapted the file, you must delete the first',' and to name the array (const char RihannaScreen) is very important to put the word 'const' because if we do not, SDCC puts data load instructions (LD).