Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2020
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.39 KB | None | 0 0
  1. void confeccionaDatosFoto (Fotografia fotos, Texto datos){
  2.     sprintf(datos, "%s%c%d%c%lu%s", fotos.titulo,
  3.                                     '#',
  4.                                     fotos.id,
  5.                                     '#',
  6.                                     strlen(fotos.puntuacion)-1,
  7.                                     fotos.tamano);
  8.     printf("%s\n", datos);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement