Advertisement
dllbridge

Untitled

Oct 2nd, 2024
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.71 KB | None | 0 0
  1.  
  2. #include <iostream>
  3. using namespace std;
  4.  
  5. void foo(int *p);
  6.  
  7.  
  8. /////////////////////////////////////////
  9. int main()
  10. {
  11.    
  12.     for(int i = 1; i < 10; i++)  
  13.     {
  14.         foo(&i);
  15.     }
  16. }
  17.  
  18. /////////////////////////////////////////
  19. void foo(int *p)
  20. {
  21.    
  22.    
  23.    
  24.    
  25.     for(int i = 2; i < 10; i++)  
  26.     {    
  27.         cout << *p;
  28.         cout << " * ";
  29.         cout << i;
  30.         cout << " = ";
  31.         cout.width(2);
  32.         cout << i * (*p) << endl ;
  33.     }   cout << " - - - - - - \n";
  34. }
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51. /*
  52. #include <stdio.h>
  53.  
  54. void foo(int *p);
  55.  
  56.  
  57. /////////////////////////////////////////
  58. int main()
  59. {
  60.    
  61.     for(int i = 1; i < 10; i++)  
  62.     {
  63.         foo(&i);
  64.     }
  65. }
  66.  
  67. /////////////////////////////////////////
  68. void foo(int *p)
  69. {
  70.    
  71.    
  72.    
  73.    
  74.     for(int i = 2; i < 10; i++)  
  75.     {    
  76.         printf("%d * %d = %2d\n", *p, i, i * *p);
  77.     }   printf(" - - - - - -\n");
  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. #include <stdio.h>
  107.  
  108. void foo();
  109.  
  110.  
  111. /////////////////////////////////////////
  112. int main()
  113. {
  114.    
  115.     for(int i = 1; i < 10; i++)  
  116.     {
  117.         foo();
  118.     }
  119. }
  120.  
  121. /////////////////////////////////////////
  122. void foo()
  123. {
  124.      
  125.      
  126.       static int n = 1;
  127.      
  128.       printf("n = %d\n", n);
  129.      
  130.       n ++;
  131. }
  132.  
  133.  
  134.  
  135.  
  136.  
  137. */
  138.  
  139.  
  140.  
  141.  
  142.  
  143.  
  144.  
  145.  
  146.  
  147.  
  148.  
  149.  
  150.  
  151. /*
  152.  
  153. #include <stdio.h>
  154.  
  155. char*  foo(char* p);
  156.  
  157.  
  158. /////////////////////////////////////////
  159. int main()
  160. {
  161.     char  n[8] = "SONY";
  162.    
  163.     char *p = foo(&n[2]);
  164.    
  165.     printf("%c\n", *p);
  166. }
  167.  
  168. /////////////////////////////////////////
  169. char* foo(char *p)
  170. {
  171.      
  172.      
  173.       static char c = p[-1];
  174.    
  175.  
  176. return &c;    
  177. }
  178.  
  179.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement