Ver Mensaje Individual
  #3 (permalink)  
Antiguo 18/04/2010, 19:35
aguirremanuel
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: Dibujar Cuadros con texto en C

Aquí tienes un ejemplo mi pana :

Código C:
Ver original
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. #define NUM_PERSONAS 3
  5.  
  6. typedef struct Persona  //estructura con los nombres y los apellidos
  7. {
  8.     char nombre[20];
  9.     char apellido[20];
  10. }PERSONA;
  11.  
  12. int main()
  13. {
  14.     PERSONA persona[NUM_PERSONAS];
  15.     int x;
  16.  
  17.     printf("Ingrese 3 nombres y apellidos de personas\n");
  18.     for (x = 0 ; x < NUM_PERSONAS ; x++ )
  19.     {
  20.         printf("\n%der Nombre   : ",x+1); scanf(" %s",persona[x].nombre);
  21.         printf("%der Apellido : ",x+1); scanf(" %s",persona[x].apellido);
  22.     }
  23.     printf("\n\nIMPRIMIENDO DATOS :\n");
  24.     printf("-------------------------------\n");
  25.     printf("|   NOMBRE     |   APELLIDO   |\n");
  26.     printf("-------------------------------");
  27.     for (x = 0 ; x < NUM_PERSONAS ; x++ )
  28.     {
  29.         printf("\n|  %-10s  |  %-10s  |",persona[x].nombre,persona[x].apellido);
  30.         printf("\n-------------------------------");
  31.     }
  32.     printf("\n\n");
  33.     return 0;

Suerte...!!!