Advertisement
dllbridge

Untitled

Nov 17th, 2024
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 3.82 KB | None | 0 0
  1.  
  2.  
  3. #include     <stdio.h>  
  4.  
  5.  
  6. char sz[99] = "SONY Pictures";
  7.  
  8. ///////////////////////////////////////////////////////
  9. int main()                                           //
  10. {
  11.     char *psz = &sz[8];
  12.    
  13.     for(int i = 0; i < 13; i = i + 1)
  14.     {
  15.         printf("%c address = %d \n", sz[i], &sz[i]);
  16.    
  17.    
  18.     }    
  19.    
  20.     psz = &sz[3];
  21.    
  22.     printf("%c  \n", *psz);
  23. }
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39. /*
  40. #include     <stdio.h>  
  41.  
  42.  
  43. char sz[99] = "SONY Pictures";
  44.  
  45. ///////////////////////////////////////////////////////
  46. int main()                                           //
  47. {
  48.    
  49.    
  50.     for(int i = 0; i < 13; i = i + 1)
  51.     {
  52.         printf("%c address = %d \n", sz[i], &sz[i]);
  53.    
  54.    
  55.     }    
  56.    
  57. }
  58.  
  59.  
  60. */
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75.  
  76. /*
  77. #include     <stdio.h>  
  78.  
  79.  
  80. char sz[99] = "SONY Pictures";
  81.  
  82. ///////////////////////////////////////////////////////
  83. int main()                                           //
  84. {
  85.    
  86.     int  n = 15;
  87.     int  i =  0;
  88.     char c = 'E';
  89.    
  90.     //for(int i = 0; i <= 4; i += 1)
  91.     //{
  92. Dima:   printf("%c - \n", sz[i]);
  93.        
  94.         i++;
  95.        
  96.         if(i < 4) goto Dima;
  97.     //}
  98.    
  99.   //  sz[2] = 0;
  100.    
  101.     printf("%s ", sz);
  102. }
  103.  
  104. */
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114. /*
  115. #include     <stdio.h>  
  116.  
  117.  
  118. char sz[99] = "SONY Pictures";
  119.  
  120. ///////////////////////////////////////////////////////
  121. int main()                                           //
  122. {
  123.    
  124.     int n = 15;
  125.    
  126.     char c = 'E';
  127.    
  128.     for(int i = 0; i <= 4; i += 1)
  129.     {
  130.         printf("%c - \n", sz[i]);
  131.     }
  132.    
  133.     sz[2] = 0;
  134.    
  135.     printf("%s ", sz);
  136. }
  137.  
  138.  
  139. */
  140.  
  141.  
  142.  
  143.  
  144.  
  145.  
  146.  
  147.  
  148.  
  149.  
  150.  
  151.  
  152.  
  153.  
  154.  
  155.  
  156.  
  157.  
  158.  
  159. /*
  160. #include     <stdio.h>  
  161.  
  162.  
  163. char sz[99] = "SONY";
  164.  
  165. ///////////////////////////////////////////////////////
  166. int main()                                           //
  167. {
  168.    
  169.     int n = 15;
  170.    
  171.     char c = 'E';
  172.    
  173.     printf("c = %c \n", c);
  174.    
  175.    
  176. }
  177.  
  178.  
  179.  
  180. */
  181.  
  182.  
  183.  
  184.  
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193.  
  194.  
  195.  
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202. /*
  203. #include     <stdio.h>  
  204.  
  205.  
  206. ///////////////////////////////////////////////////////
  207. int main()                                           //
  208. {
  209.    
  210.     int n = 15;
  211.    
  212.     char c = 'E';
  213.    
  214.     printf("size of n = %d \n", sizeof(n   ));
  215.     printf("size of c = %d \n", sizeof(char));    
  216. }
  217.  
  218. */
  219.  
  220.  
  221.  
  222.  
  223.  
  224.  
  225.  
  226.  
  227.  
  228.  
  229.  
  230.  
  231.  
  232.  
  233.  
  234.  
  235.  
  236.  
  237.  
  238.  
  239.  
  240.  
  241. /*
  242. #include     <stdio.h>  
  243.  
  244.  
  245. ///////////////////////////////////////////////////////
  246. int main()                                           //
  247. {
  248.    
  249.     int n = 15;
  250.    
  251.     char sz[99] = "SONY = %d %s Dima\n";
  252.    
  253.     printf(sz, n, "Sobolev");
  254.    
  255.     printf("%s Pictures\n", "SONY");    
  256.    
  257. }
  258.  
  259.  
  260.  
  261.  
  262. */
  263.  
  264.  
  265.  
  266.  
  267.  
  268.  
  269.  
  270.  
  271.  
  272.  
  273.  
  274.  
  275.  
  276.  
  277.  
  278.  
  279.  
  280.  
  281. /*
  282. #include     <stdio.h>  
  283.  
  284.  
  285. ///////////////////////////////////////////////////////
  286. int main()                                           //
  287. {
  288.    
  289.    
  290.    
  291.     printf("const = %d %s Dima\n", 23, "Sobolev");
  292.    
  293.     printf("%s Pictures\n", "SONY");    
  294.    
  295.    
  296.  
  297. }
  298.  
  299. */
  300.  
  301.  
  302.  
  303.  
  304.  
  305.  
  306.  
  307.  
  308.  
  309.  
  310.  
  311.  
  312.  
  313.  
  314.  
  315.  
  316.  
  317.  
  318.  
  319. /*
  320. #include     <stdio.h>  
  321. #include      <time.h>  
  322. #include    <stdlib.h>
  323.  
  324. void foo(int *, int *cvbcvbcv);
  325.  
  326. ///////////////////////////////////////////////////////
  327. int main()                                           //
  328. {
  329.    
  330.     srand(time(0));
  331.    
  332.     int nArr[15] = {1, 22, 33, 44, 55, 66, 77, 88};
  333.     int nA_2[15];
  334.    
  335.     nArr[14] = 12;
  336.    
  337.     for(int i = 0; i < 20; i++)
  338.     {
  339.         nA_2[i] = rand() %200;    
  340.     }  
  341.    
  342.    
  343.     printf("nArr = %d\n", nArr);    
  344.    
  345.     foo(&nArr[0], &nA_2[0]);
  346. }
  347.  
  348.  
  349.  
  350.  
  351. ///////////////////////////////////////////////////////
  352. void foo(int *p, int *p2)                            //  
  353. {
  354.      
  355.     for(int i = -5; i < 20; i++)
  356.     {
  357.            
  358.            
  359.         printf("%3d, ", p [i]);      
  360.         printf("%3d\n", p2[i]);                
  361.     }    
  362. }
  363.  
  364.  
  365. */
  366.  
  367.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement