fork(1) download
  1. #include <stdlib.h>
  2. #include <stdio.h>
  3. #include <string.h>
  4.  
  5. void concatenar_letra(char texto[], char letra){
  6. size_t tamanho = strlen(texto);
  7. texto[tamanho] = letra;
  8. texto[tamanho + 1] = '\0';
  9. }
  10.  
  11. int main() {
  12. char texto[30] = "texto";
  13. concatenar_letra(texto, '!');
  14.  
  15. printf("%s", texto);
  16.  
  17. return 0;
  18. }
  19.  
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
texto!