Advertisement
dllbridge

Untitled

Jul 14th, 2024
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 2.20 KB | None | 0 0
  1.  
  2.  
  3.  
  4.  
  5. #include  <stdio.h>
  6.  
  7.  
  8.  
  9. char szArr[99] = "SONY";
  10.  
  11.  
  12. ////////////////////////////////////////////////////
  13. int main()                                        //
  14. {
  15.  
  16.     printf("SONY          \n");
  17.     printf("%s kjhsdkajh  \n", szArr);
  18. }
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26. /*
  27.  
  28. #include  <stdio.h>
  29.  
  30.  
  31. int    n1 = 11;                                        //    jkhkljhkj
  32. int    n2 =  7,                                        //   iujoiujoiu
  33.        n3     ;                                        // iouoiuoiuoiu
  34.  
  35. void     foo();
  36.  
  37.  
  38. ////////////////////////////////////////////////////
  39. int main()                                        //
  40. {
  41.  
  42.     foo();
  43.    
  44.     printf("summa = %d", n3);
  45.  
  46. }
  47.  
  48.  
  49.  
  50.  
  51. ////////////////////////////////////////////////////
  52. void foo()                                        //
  53. {
  54.        
  55.  
  56.  
  57.    
  58.     n3 = n1 + n2;        
  59.        
  60. }
  61.  
  62.  
  63. */
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. /*
  71. #include  <stdio.h>
  72.  
  73.  
  74. int    n1;                                        //    jkhkljhkj
  75. int    n2,                                        //   iujoiujoiu
  76.        n3;                                        // iouoiuoiuoiu
  77.  
  78. void foo();
  79.  
  80.  
  81. ////////////////////////////////////////////////////
  82. int main()                                        //
  83. {
  84.  
  85.     foo();
  86.    
  87.     printf("summa = %d", n3);
  88.  
  89. }
  90.  
  91.  
  92.  
  93.  
  94. ////////////////////////////////////////////////////
  95. void foo()                                        //
  96. {
  97.        
  98.  
  99.     n1 = 10;
  100.     n2 =  4;
  101.    
  102.     n3 = n1 + n2;        
  103.        
  104. }
  105.  
  106. */
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119. /*
  120.  
  121. #include  <stdio.h>
  122.  
  123.  
  124. int    n1;                                        //    jkhkljhkj
  125. int    n2,                                        //   iujoiujoiu
  126.        n3;                                        // iouoiuoiuoiu
  127.  
  128.  
  129.  
  130. ////////////////////////////////////////////////////
  131. int main()                                        //
  132. {
  133.  
  134.  
  135.     n1 = 10;
  136.     n2 =  2;
  137.    
  138.     n3 = n1 + n2;
  139.    
  140.     printf("summa = %d", n3);
  141.  
  142. }
  143.  
  144.  
  145.  
  146. */
  147.  
  148.  
  149.  
  150.  
  151.  
  152.  
  153.  
  154.  
  155.  
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172. /*
  173.  
  174.  
  175. #include  <stdio.h>
  176.  
  177.  
  178.  
  179.  
  180.  
  181. ////////////////////////////////////////////////////
  182. int main()                                        //
  183. {
  184.  
  185.     printf("SONY");
  186. }
  187.  
  188.  
  189. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement