fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main(void) {
  5. char wochentag[] = "Freitag";
  6. int tag = 13;
  7. char monat[] = "Mai";
  8. //int jahr = 1927;//unused
  9. char *string=(char*) malloc(26*sizeof(char));//not need cast from void* in C. also sizeof(char) is always 1
  10. sprintf (string, "%s %d %s", wochentag, tag, monat);
  11.  
  12. printf("%s\n", string);
  13.  
  14. free(string);
  15.  
  16. return 0;
  17. }
Success #stdin #stdout 0s 2288KB
stdin
Standard input is empty
stdout
Freitag 13 Mai