Pásalo .
[visto en digg]
No hay entradas relacionadas.
Una pequeña ayuda para tus amigos… xD
struct hugs { char name[15]; char surname[15]; int donation; }
main() { struct hugs new_hug;
scanf(”%s %s %d”, &new_hug.name, &new_hug.surname, &new_hug.donation); }
Me había quedado mucho mejor indentado
Name (requerido)
Email (required, will not be published)
Website
Comment
Envíame un email cuando haya comentarios en esta entrada
Copyright © 2010 Your Name Here. All rights reserved.
Punchcut Theme ~ Themes by Jestro
Una pequeña ayuda para tus amigos… xD
struct hugs
{
char name[15];
char surname[15];
int donation;
}
main()
{
struct hugs new_hug;
scanf(”%s %s %d”, &new_hug.name,
&new_hug.surname,
&new_hug.donation);
}
Me había quedado mucho mejor indentado