Advertisement
dllbridge

Untitled

Aug 6th, 2023
1,134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.58 KB | None | 0 0
  1.  
  2.  
  3. #include   <stdio.h>
  4.  
  5.  
  6.  
  7.  
  8.  
  9. char sz[12] = {56, 51, 32, 'Y'};
  10.  
  11.  
  12.  
  13. ////////////////////////////////////////////////////
  14. int main()                                        //
  15. {
  16.    
  17.     //sz[2] = 69;
  18.    
  19.     printf("sz = %s", sz);
  20.    
  21. }
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43. /*
  44.  
  45. #include   <stdio.h>
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55. ////////////////////////////////////////////////////
  56. int main()                                        //
  57. {
  58.    
  59.     char sz[12] = "SONY\n";
  60.    
  61.     int n = 8;
  62.    
  63.     n = n + 11;
  64.  
  65.     sz[5] = 'W';
  66.    
  67.     printf("sz = %s", sz);
  68.  
  69. }
  70.  
  71.  
  72.  
  73. */
  74.  
  75.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement