Ver Mensaje Individual
  #6 (permalink)  
Antiguo 30/03/2012, 14:39
sam90
 
Fecha de Ingreso: abril-2010
Ubicación: Rosario
Mensajes: 1.850
Antigüedad: 14 años, 8 meses
Puntos: 228
Respuesta: Problemas con do/while y switch

Código C:
Ver original
  1. void funcionC()    
  2. {
  3.    char frase[50], c;
  4.    int i = 0;
  5.    system("CLS");
  6.                      
  7.                      printf("Escriu una frase: \n\n");
  8.                      
  9.                      gets(frase);
  10.    
  11.                        
  12.                      while(frase[i]!='\0')
  13.                      {
  14.                          
  15.                          if(frase[i]==' ')
  16.                          {
  17.                              printf("\n");
  18.                          }
  19.                          else
  20.                          {
  21.                              printf("%c",frase[i]);
  22.                          }
  23.                            
  24.                          i++;
  25.                      }
  26.                      getch();
  27.     }
  28.  
  29.  
  30. case 'c':
  31. case 'C':
  32.      funcionC();
  33.      break;