Advertisement
dllbridge

Untitled

Oct 16th, 2024
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.00 KB | None | 0 0
  1.  
  2.  
  3. #include <stdio.h>
  4.  
  5.  
  6.  
  7.  
  8. ////////////////////////////////////////
  9. int main()
  10. {
  11.  
  12.     int i = 1;
  13.  
  14. L_01:   printf("i = %2d\n", i);                  
  15.  
  16.         i++;
  17.        
  18.         if(i < 11) goto L_01;
  19.            
  20. }
  21.  
  22.  
  23.  
  24.  
  25.  
  26. /*
  27. # include <stdio.h>
  28.  
  29.  
  30.  
  31.  
  32. ////////////////////////////////////////
  33. int main()
  34. {
  35.  
  36.  
  37.     for(int i = 10; i > 0; i--)
  38.     {
  39.    
  40.         printf("i = %2d\n", i);                  
  41.     }
  42. }
  43.  
  44.  
  45. */
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68. /*
  69. # include <stdio.h>
  70.  
  71. int *foo ();
  72. int *foo1();
  73.  
  74.  
  75. ////////////////////////////////////////
  76. int main()
  77. {
  78.    
  79.     int *p1 =  foo();
  80.     int *p2 = foo1();
  81.    
  82.     int n1 = *p1,
  83.         n2 = *p2;  
  84.    
  85.     if(n1 < n2) printf("%d\n", n2);
  86.     else        printf("%d\n", n1);
  87. }
  88.  
  89.  
  90. /////////////////////////////////////////
  91. int *foo()
  92. {
  93.     static int m=15;
  94.     return &m;
  95. }
  96.  
  97.  
  98. ////////////////////////////////////////
  99. int *foo1()
  100. {
  101.     static  int z=10;
  102.     return &z;
  103. }
  104.  
  105. */
  106.  
  107.  
  108.  
  109.  
  110.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement