fork download
  1. /***************************************************
  2.  * Author : CS Developers
  3.  * Author URI: https://w...content-available-to-author-only...v.com
  4.  * Facebook : https://w...content-available-to-author-only...k.com/CSDevelopers
  5.  ***************************************************/
  6.  
  7. #include <stdio.h>
  8. #include <string.h>
  9.  
  10. int main()
  11. {
  12. char str[100] = " CS ";
  13.  
  14. strcat(str, "Developers ");
  15. strcat(str, "URL: ");
  16. strcat(str, "https://w...content-available-to-author-only...v.com/ ");
  17.  
  18. printf("\n%s\n", str);
  19.  
  20. return 0;
  21. }
Success #stdin #stdout 0s 5472KB
stdin
Standard input is empty
stdout
 CS Developers URL: https://w...content-available-to-author-only...v.com/