Advertisement
dllbridge

Untitled

Aug 5th, 2024
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.50 KB | None | 0 0
  1.  
  2.  
  3. #include   <stdio.h>
  4.  
  5. ////////////////////////////////////////////////////
  6. int main()                                        //
  7. {
  8.        
  9.     char c = 'B';
  10.     int n2 = 12,
  11.         n3;
  12.  
  13.  
  14.  
  15.    
  16.    
  17.     printf("c = %d", c);  
  18.    
  19.  
  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. //    printf("size of char = %d", sizeof(char));
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59. /*
  60. #include   <stdio.h>
  61.  
  62. ////////////////////////////////////////////////////
  63. int main()                                        //
  64. {
  65.        
  66.     int n;
  67.     int n2 = 12,
  68.         n3;
  69.  
  70.     scanf("%d", &n);
  71.  
  72.    
  73.    
  74.     n3 = n + n2;        
  75.    
  76.     printf("n3 = %d", n3);
  77.  
  78. }
  79.  
  80.  
  81. */
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110. /*
  111. #include   <stdio.h>
  112.  
  113.  
  114.  
  115. int foo();
  116.  
  117.  
  118.  
  119. ////////////////////////////////////////////////////
  120. int main()                                        //
  121. {
  122.        
  123.        
  124.     foo();
  125.    
  126.  
  127. }
  128.  
  129.  
  130.  
  131. ////////////////////////////////////////////////////
  132. int foo()                                         //
  133. {
  134.     int n;
  135.     int n2 = 12,
  136.         n3;
  137.  
  138.  
  139.     n = 20;
  140.    
  141.     n3 = n + n2;
  142.  
  143.     printf("n3 = %d", n3);          
  144.        
  145. }
  146.  
  147.  
  148. */
  149.  
  150.  
  151.  
  152.  
  153.  
  154. //    scanf("%d", &n);
  155.  
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167. /*
  168.  
  169. #include  <stdio.h>
  170.  
  171.  
  172. int  n = 123456789;
  173.  
  174.  
  175. ////////////////////////////////////////////////////
  176. int main()                                        //
  177. {
  178.    
  179.     printf("Hello, World !");
  180.     printf("\nn = %d \n", n);    
  181.     getchar();
  182. }
  183.  
  184.  
  185.  
  186. */
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193.  
  194.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement