Ver Mensaje Individual
  #3 (permalink)  
Antiguo 27/03/2010, 11:36
Avatar de CapacProg
CapacProg
 
Fecha de Ingreso: marzo-2010
Ubicación: Lima - Perú
Mensajes: 324
Antigüedad: 14 años, 9 meses
Puntos: 71
Respuesta: uso del while

Debes de hacerlo así:
Código C++:
Ver original
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. int main()
  5. {
  6.     char color[15]="rojo";
  7.  
  8.     do{
  9.         printf("Introduce un color:");
  10.         fflush(stdout);
  11.         scanf("%14s",color);
  12.     }while(strcmp(color,"rojo"));
  13.     printf("El color es el %s\n",color);
  14.  
  15.     return 0;
  16. }