• Matéria: Matemática
  • Autor: antonioalves82
  • Perguntado 9 anos atrás

Quais comandos listados são funções que na linguagem C pertencem à biblioteca string.h
A) system (“cls”); tan( ) e ceil()
B) sqrt(); pow() e floor()
C) strcat (destino, fonte); strupr (string) e strlwr (string)
D) strcat(); pow() e sin()
E) system(“color 0B”); log() e textcolor(cor)

Respostas

respondido por: JOEMYTH
4
Resposta C) strcat (destino, fonte); strupr (string) e strlwr (string)
 
strcat (destino, fonte); anexa o string <fonte> ao string <destino>.
strupr(string); Retorna a <string> convertida para letras maiusculas.
strlwr(string); Retorna a <string> convertida para letras minusculas.
Perguntas similares