Enviado em 30/11/2021 - 22:53h
Boa Noite a todos.#undef strcat #ifndef STRCAT # define STRCAT strcat #endif /* Append SRC on the end of DEST. */ char * STRCAT (char *dest, const char *src) { strcpy (dest + strlen (dest), src); return dest; } libc_hidden_builtin_def (strcat)
#include <stdio.h> #include <string.h> // strlen char *MyStrcat(char *dest, const char *src) { strcpy (dest + strlen(dest), src); return dest; } int main() { char Text[80] = {0}; MyStrcat(Text,"Viva"); MyStrcat(Text," o "); MyStrcat(Text,"Linux"); puts(Text); }
Enviado em 06/12/2021 - 21:35h
#undef strcat #ifndef STRCAT # define STRCAT strcat #endif /* Append SRC on the end of DEST. */ char * STRCAT (char *dest, const char *src) { strcpy (dest + strlen (dest), src); return dest; } libc_hidden_builtin_def (strcat)
#include <stdio.h> #include <string.h> // strlen char *MyStrcat(char *dest, const char *src) { strcpy (dest + strlen(dest), src); return dest; } int main() { char Text[80] = {0}; MyStrcat(Text,"Viva"); MyStrcat(Text," o "); MyStrcat(Text,"Linux"); puts(Text); }
Enviado em 01/12/2021 - 12:12h
Enviado em 01/12/2021 - 15:24h
Enviado em 01/12/2021 - 15:36h
Enviado em 01/12/2021 - 15:50h
Criar entrada (menuentry) ISO no Grub
Como gerar qualquer emoji ou símbolo unicode a partir do seu teclado
Instalando o Pi-Hole versão v5.18.4 depois do lançamento da versão v6.0
Instalar o VIM 9.1 no Debian 12
Como saber o range de um IP público?
Muitas dificuldades ao instalar distro Linux em Notebook Sony Vaio PCG-6131L (VPCEA24FM)
Dock do debian está muito pequena (1)
Instalei Windows 11 e não alterou o Grub do Debian (0)
Linux Mint (21.2) não reconhece teclado mecanico RASEC da PCYES (2)