Advertisement
dllbridge

Untitled

Sep 24th, 2024
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.77 KB | None | 0 0
  1.  
  2.  
  3. #include   <stdio.h>
  4.  
  5.  
  6.  
  7. __int8 sz[] = "RtTY";
  8.  
  9. __int8 c = 'A';
  10.  
  11. /////////////////////////////////////////////////////
  12. int main()                                         //
  13. {
  14.    
  15.    
  16.     printf("%c\n", sz[2]);
  17.     printf("%c"  ,  c);  
  18. }
  19.    
  20.    
  21.    
  22.    
  23.    
  24.    
  25.    
  26.    
  27.    
  28.    
  29.    
  30.    
  31.    
  32.    
  33.    
  34.    
  35.        
  36.                                                
  37. /*
  38.  
  39. #include   <stdio.h>
  40.  
  41.  
  42. int n = 77;
  43.  
  44. char sz[] = "RvvY";
  45.  
  46. /////////////////////////////////////////////////////
  47. int main()                                         //
  48. {
  49.    
  50.     int i = 0;
  51.    
  52.    
  53.     do  
  54.     {  
  55.         printf("%d = %c\n", i, sz[i]);
  56.        
  57.        
  58.     }  while(++i < 4);
  59.      
  60.        
  61. }
  62.  
  63.  
  64. */
  65.  
  66.  
  67.  
  68.  
  69.  
  70. /*
  71.  
  72. #include   <stdio.h>
  73.  
  74.  
  75. int n = 77;
  76.  
  77. char sz[] = "aNNY";
  78.  
  79. /////////////////////////////////////////////////////
  80. int main()                                         //
  81. {
  82.    
  83.     int i = 0;
  84.    
  85.    
  86. x:    
  87.         printf("%2d\n", sz[i]);
  88.        
  89.         i++;
  90.        
  91.         if(i < 5) goto x;
  92.        
  93. }
  94.  
  95.  
  96.  
  97. */
  98.  
  99. /*
  100. #include   <stdio.h>
  101.  
  102.  
  103. int n = 77;
  104.  
  105. char sz[5] = "NNNY";
  106.  
  107. /////////////////////////////////////////////////////
  108. int main()                                         //
  109. {
  110.    
  111. //  printf("%c", sz[0]);
  112. //  printf("%c", sz[1]);
  113. //  printf("%c", sz[2]);
  114.     int i = 0;
  115.    
  116.     for(; ; )
  117.     {
  118.         printf("%c", sz[i]);
  119.        
  120.         i++;
  121.        
  122.         if(i == 4) break;
  123.     }  
  124. }
  125.  
  126. */
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.  
  137.  
  138.  
  139.  
  140.  
  141.  
  142.  
  143. /*
  144.  
  145. #include   <stdio.h>
  146.  
  147.  
  148. int n = 77;
  149.  
  150. char sz[99] = "n = %d";
  151.  
  152. /////////////////////////////////////////////////////
  153. int main()                                         //
  154. {
  155.    
  156.     n = 5;
  157.                
  158.     printf(sz, n);  
  159.  
  160. return 0;
  161. }
  162.  
  163.  
  164. */
  165.  
  166.  
  167.  
  168.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement