Advertisement
dllbridge

Untitled

Oct 23rd, 2024 (edited)
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 2.33 KB | None | 0 0
  1.  
  2. #include     <stdio.h>
  3.  
  4.  
  5.  
  6.  
  7. unsigned char c3 = 245;
  8. /////////////////////////////////////////////////////
  9. int main()
  10. {
  11.    
  12.    
  13.     int i = 245;
  14.    
  15.    
  16.            
  17. L_01:   c3++;    
  18.          i++;
  19.         printf("%3d\n", c3);
  20.        
  21.         if( i < 270) goto L_01;
  22.  
  23. }
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34. #include     <stdio.h>
  35.  
  36.  
  37. unsigned __int8  n3 = 245;
  38.  
  39. /////////////////////////////////////////////////////
  40. int main()
  41. {
  42.    
  43.     for(int i = 245; i < 270; i++ )
  44.     {
  45.            
  46.         n3++;    
  47.         printf("%3d\n", n3);
  48.     }
  49.  
  50. }
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75. /*
  76. #include     <stdio.h>
  77. #include    <string.h>
  78.  
  79.  
  80.  
  81. char c = 87;
  82.  
  83. int  n = 87;
  84.  
  85. __int32 n2 = 88;
  86.  
  87. __int16  n3 = 89;
  88.  
  89. /////////////////////////////////////////////////////
  90. int main()
  91. {
  92.    
  93.     printf("%c\n", n3);
  94.    
  95.     printf("sizeof(char) = %d\n", sizeof(char));    
  96.     printf("sizeof( int) = %d\n", sizeof(n3 ));    
  97. }
  98.  
  99.  
  100. */
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128. /*
  129. #include     <stdio.h>
  130. #include    <string.h>
  131.  
  132.  
  133.  
  134. char sz[99] = "TDK";
  135.  
  136. /////////////////////////////////////////////////////
  137. int main()
  138. {
  139.    
  140.  
  141.    
  142.    
  143.     strcpy(sz, "Pictures");
  144.    
  145.     printf("%s\n", sz);            
  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.  
  176.  
  177. /*
  178.  
  179. #include     <stdio.h>
  180. #include    <string.h>
  181.  
  182. char c = 'A';
  183.  
  184. char sz[99] = "TDK";
  185.  
  186. /////////////////////////////////////////////////////
  187. int main()
  188. {
  189.    
  190.     printf("%c\n",  c);
  191.     printf("%d\n",  c);
  192.     printf("%s\n", sz);  
  193.    
  194.     sz[0] = 'S';
  195.     sz[1] = 'O';  
  196.     sz[2] = 'N';
  197.     sz[3] = 'Y';  
  198.     sz[4] =  0 ;  
  199.    
  200.      
  201.          
  202.     printf("%s\n", sz);  
  203.    
  204.    
  205.     strcpy(sz, "Pictures");
  206.    
  207.     printf("%s\n", sz);            
  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.  
  234.  
  235. /*
  236. #include    <stdio.h>
  237.  
  238.  
  239. char c = 'A';
  240.  
  241. /////////////////////////////////////////////////////
  242. int main()
  243. {
  244.    
  245.     printf("%c\n", c);
  246.     printf("%d\n", c);    
  247. }
  248.  
  249.  
  250.  
  251.  
  252.  
  253. */
  254.  
  255.  
  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.  
  283. #include    <stdio.h>
  284.  
  285. /////////////////////////////////////////////////////
  286. int main()
  287. {
  288.    
  289.     char sz [99],
  290.          sz2[99] = "%s, %s\n";
  291.    
  292.     scanf("%s", sz);
  293.    
  294.     printf(sz2, "SONY", sz);
  295.    
  296. }
  297.  
  298.  
  299. */
  300.  
  301.  
  302.  
  303.  
  304.  
  305.  
  306.  
  307.  
  308.  
  309.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement