Advertisement
dllbridge

Untitled

Nov 15th, 2024
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 2.22 KB | None | 0 0
  1.  
  2.  
  3. #include  <stdio.h>
  4.  
  5.  
  6.  
  7. char sz[5] = "SONY";
  8.  
  9.  
  10.  
  11. //////////////////////////////////////////////////////////
  12. int main()                                              //  
  13. {
  14.    
  15.    
  16.     char c = sz[1];
  17.    
  18.     printf("%d\n",  c);
  19.  
  20.     printf("%d\n", &sz[1]);    
  21.     printf("%d\n", &sz[2]);      
  22. }
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42. /*
  43.  
  44. #include  <stdio.h>
  45.  
  46.  
  47.  
  48. char sz[5] = "SONY";
  49.  
  50.  
  51.  
  52. //////////////////////////////////////////////////////////
  53. int main()                                              //  
  54. {
  55.    
  56.    
  57.     printf("%c\n", sz[0]);  
  58.     printf("%c\n", sz[1]);  
  59.     printf("%c\n", sz[2]);    
  60.     printf("%c\n", sz[3]);    goto L_01;
  61.    
  62. L_01:
  63.  
  64.  
  65. return 0;        
  66. }
  67.  
  68.  
  69.  
  70. */
  71.  
  72.  
  73.  
  74.  
  75.  
  76.  
  77.  
  78.  
  79.  
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97. /*
  98. #include  <stdio.h>
  99.  
  100.  
  101. int      n =   105;
  102. char sz[5] = "SONY";
  103.  
  104.  
  105. //////////////////////////////////////////////////////////
  106. int foo()                                               //
  107. {
  108.    
  109.  
  110. return 12;  
  111. }
  112.  
  113.  
  114.  
  115.  
  116. //////////////////////////////////////////////////////////
  117. int main()                                              //  
  118. {
  119.    
  120.     printf("foo = %d\n", foo());
  121.    
  122. }
  123.  
  124.  
  125. */
  126.  
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.  
  137.  
  138.  
  139.  
  140.  
  141.  
  142.  
  143.  
  144.  
  145. /*
  146. #include  <stdio.h>
  147.  
  148.  
  149. int      n =   105;
  150. char sz[5] = "SONY";
  151.  
  152.  
  153.  
  154.  
  155. //////////////////////////////////////////////////////////
  156. int main()                                              //  
  157. {
  158.     int i = 0;
  159.  
  160.  
  161. L_01:   printf("%2d\n", sz[i]);
  162.  
  163.         i++;
  164.    
  165.         if(i < 5) goto L_01;  
  166.        
  167. return 0;        
  168. }
  169.  
  170.  
  171. */
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186. /*
  187.  
  188. #include  <stdio.h>
  189.  
  190.  
  191. int      n =   105;
  192. char sz[4] = "JVC";
  193.  
  194.  
  195.  
  196.  
  197. //////////////////////////////////////////////////////////
  198. int main()                                              //  
  199. {
  200.     for(int i = 0; i < 4; i=i+1)
  201.     {
  202.         printf("%2d\n", sz[i]);
  203.     }
  204. }
  205.  
  206.  
  207.  
  208.  
  209. */
  210.  
  211.  
  212.  
  213.  
  214.  
  215.  
  216.  
  217.  
  218.  
  219.  
  220.  
  221.  
  222.  
  223.  
  224.  
  225.  
  226.  
  227.  
  228.  
  229.  
  230. /*
  231.  
  232.  
  233. #include  <stdio.h>
  234.  
  235.  
  236. int      n =   105;
  237. char sz[114] = "JVC";
  238.  
  239.  
  240.  
  241.  
  242. //////////////////////////////////////////////////////////
  243. int main()                                              //  
  244. {
  245.    
  246.     printf("size of %d", sizeof(char));
  247.    
  248. }
  249.  
  250.  
  251. */
  252.  
  253.  
  254.  
  255.  
  256.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement