Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include <stdio.h>
  2.  
  3. int main(void){
  4.  
  5. char str1[]="hello world 1\n";
  6. char str2[]={'h','e','l','l','o',' ','w','o','r','l','d',' ','2','\n'};
  7. printf(str1);
  8. printf(str2);
  9. return 0;
  10. }