Aula23 AeP EC2 Strings
Aula23 AeP EC2 Strings
Aula23 AeP EC2 Strings
E PROGRAMAÇÃO
Declaração:
char nomeString[tamanho];
Exemplos:
char nome[10];
char nomeCidade[25];
char meuNome[8] = “Ewerson”;
STRINGS
Chars
vs.
Strings
char
1
caracter
char letraA = ‘a’
Manipulando
Strings
strcpy(strDestino, strFonte)
Copia
a
strFonte
para
strDesTno
Exemplos:
strcpy(str,“ana”) // str ß “ana”
strcpy(str,“a b c”) // str ß “a b c”
EXEMPLO
3
STRINGS
strcmp(str1,str2)
Compara
as
strings
str1
e
str2
Retorna
1
se
forem
diferentes
Retorna
0
se
forem
iguais
Exemplos:
strcmp(“ana”,“ana”) // retorna 0
strcmp(“Ana”,“ana”) // retorna 1
Exercícios
EXERCÍCIOS
Implemente
em
C
os
seguintes
programas:
Exercício
A
Lê
duas
strings
digitadas
pelo
usuário
e
descobre
se
elas
são
iguais
ou
se
são
diferentes.
Exercício
B
Lê
duas
strings
digitadas
pelo
usuário
e
imprime
apenas
a
maior
delas.
EXERCÍCIO
A
EXERCÍCIO
B
PRÓXIMA
AULA
Aula
de
Exercícios
sobre
operações
com
Strings
LEMBRETE
Materiais
disponíveis
no
Moodle:
• Endereço:
hcp://moodle.unipampa.edu.br/
• Senha:
AeP_EC2
Contato:
•
Sala
305
•
E-‐mail:
[email protected]
•
Favor
marcar
horário
para
atendimento!