Largo máximo de ID #39
-
Hola, quería saber cual es el largo máximo que puede tener un ID (sea de pinguino o puffle). Esto es para poder considerarlo a la hora de transformarlo dicho ID a un "string". |
Beta Was this translation helpful? Give feedback.
Answered by
CataAlamos
Aug 20, 2024
Replies: 1 comment
-
Hola, un ID es idealmente un int. Te dejo un ejemplo de cómo imprimirlo y aumentar el ID tanto en int como string. #include <stdio.h>
#include <string.h>
int main() {
int id = 0;
int number_of_penguins = 10;
for(int i = 0; i < number_of_penguins; i++) {
printf("Penguin %d says hello\n", id);
id++;
}
// Ahora con un ID como string
char id_str[10];
id = 0; // Reiniciamos id
for(int i = 0; i < number_of_penguins; i++) {
sprintf(id_str, "%d", id);
printf("Penguin ID %s says hello\n", id_str);
id++;
}
return 0;
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
JavierMoralesD
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hola, un ID es idealmente un int. Te dejo un ejemplo de cómo imprimirlo y aumentar el ID tanto en int como string.