Advertisement
Guest User

Untitled

a guest
Mar 31st, 2015
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. char nombre[20], mensaje[81];
  6. unsigned int edad=0;
  7. int carac=0;
  8.  
  9. nombre[0]= "B";
  10. nombre[1]= "l";
  11. nombre[2]= "a";
  12.  
  13. printf( "Escriba su nombre: " );
  14.  
  15. printf( "Escriba su edad: " );
  16.  
  17.  
  18. carac=sprintf( mensaje, "\nHola %s. Tienes %d anyos.\n", nombre, edad );
  19. printf("%u",carac);
  20. puts( mensaje );
  21.  
  22. return 0;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement