multiconc

z plpg, 2 tygodnie temu, napisane w Plain Text, wyświetlone 18 razy. [paste_expire] 10 miesiące.
URL https://pastebin.k4be.pl/view/bcd8e3b9 Udostępnij
Pobierz wklejkę lub Pokaż surowy tekst
  1. #include <string.h>
  2. #include <stdarg.h>
  3. #include <stdio.h>
  4.  
  5. void multiconc(char *combined, ...) {
  6.     va_list args;
  7.     va_start(args, combined);
  8.     const char *t;
  9.     combined[0] = '\0';
  10.     while((t = va_arg(args, const char*)) != NULL) {
  11.         strcat(combined, t);
  12.     }
  13.     va_end(args);
  14. }
  15.  
  16. int main(){
  17.   char cel[256];
  18.  
  19.   multiconc(cel, "slowo1 ", "slowo2-", "slowo3 ");
  20.  
  21.   printf("%s\n", cel);
  22. }
  23.  

odpowiedź "multiconc"

Tutaj możesz odpowiedzieć na wklejkę z góry

captcha