<html>
<head>
<style>
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
FONT-SIZE: 10pt;
FONT-FAMILY:Tahoma
}
</style>
</head>
<body class='hmmessage'>
strcmpi? creo que te refieres a "strcmp" o "string compare", lo que hace esta funcion (definida en el header string.h), es comparas 2 cadenas de texto, o 2 caracteres. Si la comparación es verdadera, te devuelve un "1", si es falsa, te devuelve un "0".<BR>
 <BR>
#include<string.h><BR>
#include <stdio.h><BR>
#include <conio.h><BR>
char letra[]="o"<BR>
printf("ingrese una letra: ");<BR>
fflush(stdin);<BR>
gets("%s",&letra);<BR>
if(strcmp(letra, "s")==0 or strcmp(letra, "S")==0)//Si ingresas "S" o "s" el resultado será verdadero<BR>
{<BR>
printf("La letra ingresada coincide");<BR>
}<BR>
else<BR>
{<BR>
      printf("Las letras no coinciden");<BR>
}<BR><BR><BR>
<BLOCKQUOTE>
<HR>
From: ggaleas805@hotmail.com<BR>To: cconclase@listas.conclase.net<BR>Date: Thu, 5 Jun 2008 00:38:26 +0000<BR>Subject: [C con Clase] EXISTE LA FUNCION "STRCMPI"<BR><BR>
<META content="Microsoft SafeHTML" name=Generator>
<STYLE>
.ExternalClass .EC_hmmessage P
{padding:0px;}
.ExternalClass body.EC_hmmessage
{font-size:10pt;font-family:Tahoma;}
</STYLE>
Muy buenas tardes existe la funcion strcmpi de existir donde puedo encontrar para que sirve y un ejemplo por favor gracias<BR><BR> <BR>
<DIV><FONT face="Lucida Handwriting, Cursive" size=4><FONT face="Geneva, Arial, Sans-serif">
<DIV><FONT face="Lucida Handwriting, Cursive" size=4>GABRIEL GALEAS ATIENCIA </FONT><BR>
<P align=left><FONT face="Comic Sans MS" size=4>           HARDTECH S.A</FONT></P><FONT face="Times New Roman, Times, Serif" size=3>            Técnico en computación.</FONT><BR><FONT face="Times New Roman" size=3></FONT> <BR><FONT face=Arial size=2>Mantenimiento Preventivo y Correctivo de Pc´s</FONT><BR><FONT face=Arial>Cableado Estructurado de Voz y Datos</FONT><BR></DIV></FONT></FONT></DIV><BR><BR><BR>
<HR>
Todo ruedas: información práctica y todo el glamour del mundo del motor. <A href="http://estilo.es.msn.com/" target=_blank>MSN Estilo y Tendencias</A> </BLOCKQUOTE>strcmpi???, por lo que he estudiado, y lo que sé de C/C++, existe la función "strcmp" (string compare), y que compara 2 cadenas de texto<br /><hr />Ingresa ya a MSN Deportes y entérate de las últimas novedades del mundo deportivo. <a href='http://msn.foxsports.com/fslasc/' target='_new'>MSN Deportes</a></body>
</html>