WhiteHawk
(usa Ubuntu)
Enviado em 14/01/2012 - 16:31h
Olá.
Como já foi dito, pesquise sobre a função "strcmp".
Segue um exemplo de código:
[code]
#include <stdio.h>
int main()
{
char nome1[20], nome2[20];
printf("\nDigite um nome....: ");
fgets(nome1, 20, stdin);
printf("\nDigite outro nome.: ");
fgets(nome2, 20, stdin);
if( strcmp(nome1, nome2) == 0 )
{
printf("\nNomes iguais.\n");
}
else
{
printf("\nNomes diferentes.\n");
}
return(0);
}