Ver Mensaje Individual
  #3 (permalink)  
Antiguo 23/02/2011, 10:54
dragg04
 
Fecha de Ingreso: junio-2005
Mensajes: 93
Antigüedad: 19 años, 7 meses
Puntos: 9
Respuesta: cuantos % en un string ?¿¿?¿

TIENES UN ERRO SAM

int cuantos_parametros(char texto[]); ??

CORREGIDO

int cuantos_parametros(char texto[])

UNA FORMA CON PUNTEROS

Código C++:
Ver original
  1. int cuantos_parametros(const char *texto)
  2. {
  3.     const char *ptr=texto;
  4.    int cont = 0;
  5.    while(*ptr != '\0'){
  6.       if (*ptr == '%' )
  7.         cont++;
  8.         ++ptr;
  9.     }
  10.     return cont;
  11. }