fork download
  1. #include <iostream>
  2. #include <string>
  3. #include <cstring>
  4.  
  5. int main()
  6. {
  7. char str[] = {"texto"};
  8. int a = 2017;
  9. printf("%s%i", str, a);
  10.  
  11. return 0;
  12. }
Success #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
texto2017