Advertisement
dllbridge

Untitled

Apr 4th, 2025
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.05 KB | None | 0 0
  1.  
  2.  
  3. #include   <stdio.h>
  4.  
  5. ////////////////////////////////////////////
  6. class T
  7. {
  8.    
  9. //    public:
  10.    
  11.       friend void foo(T *p);
  12.        
  13.       int n1;
  14.       int n2;      
  15.        
  16. } t3, t4;
  17.  
  18.  
  19.  
  20.  
  21.  
  22. ////////////////////////////////////////////
  23. int main()
  24. {
  25.  
  26.     T t1, t2;
  27.  
  28.     foo(&t2);          
  29.        
  30. }
  31.  
  32. ////////////////////////////////////////////
  33. void foo(T *p)
  34. {
  35.    
  36.     printf("p->n1 = %d\n", p->n1);
  37.     printf("p->n2 = %d\n", p->n2);  
  38. }
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47. //void foo(T *p);
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60. /*
  61.  
  62.  
  63.  
  64. #include  <iostream>
  65. using namespace std;
  66.  
  67. /////////////////////////////////////////////////
  68. int main()
  69. {
  70.    
  71.    
  72.     string s1     = "SONY Pictures";
  73.  
  74.    
  75.  
  76.     for(int i = 0; i < s1.length(); i++)
  77.     {
  78.         cout << s1[i] << endl;
  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. #include <iostream>
  104. using namespace std;
  105.  
  106. /////////////////////////////////////////////////
  107. int main()
  108. {
  109.    
  110.    
  111.     string s1     = "SONY";
  112.  
  113.     char  sz1[99] = " Pictures";
  114.    
  115.    
  116.     s1 = s1 + sz1;
  117.    
  118.    
  119.     cout << s1 << endl;
  120.    
  121. return 0;
  122. }
  123.  
  124.  
  125.  
  126. */
  127.  
  128.  
  129.  
  130.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement