Advertisement
dllbridge

Untitled

Oct 23rd, 2024
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.74 KB | None | 0 0
  1.  
  2.  
  3.  
  4.  
  5. #include    <stdio.h>
  6. #include   <string.h>
  7.  
  8. ///////////////////////////////////////////////////////
  9. struct Dima
  10. {
  11.      
  12.  //     public:
  13.      
  14.        int    nLen;
  15.        
  16.        char sz[99];
  17.        
  18.        int   nYear;
  19.        
  20.        float fMath;
  21.        
  22.        
  23.        int summ()
  24.        {
  25.                
  26.            return nLen + nYear;
  27.        }
  28. };
  29.  
  30.  
  31. int    n;
  32.  
  33.  
  34.  
  35. /////////////////////////////////////////////////////
  36. int main()
  37. {
  38.    
  39.    
  40.     Dima  t1, tArr[40];
  41.    
  42.     printf("n = %d\n", n);
  43.    
  44.  
  45.     strcpy(t1.sz, "SONY Pictures");
  46.    
  47.     printf("t1.sz   = %s\n", t1.sz);    
  48.    
  49.     t1.nLen = strlen(t1.sz);
  50.    
  51.     printf("t1.nLen = %d\n", t1.nLen);    
  52.    
  53.    
  54.     t1.nYear = 2015;  
  55.    
  56.     printf("t1.summ = %d\n", t1.summ());        
  57. }
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75.  
  76.  
  77. /*
  78. #include   <stdio.h>
  79.  
  80.  
  81. ///////////////////////////////////////////////////////
  82. struct Dima
  83. {
  84.        int nLen;
  85.        
  86.        char sz[99];
  87.        
  88. };
  89.  
  90.  
  91. int    n;
  92.  
  93.  
  94.  
  95. /////////////////////////////////////////////////////
  96. int main()
  97. {
  98.    
  99.    
  100.     Dima  t1;
  101.    
  102.     printf("n = %d\n", n);
  103.    
  104.     t1.nLen = 3;
  105.    
  106.     printf("t1.nLen = %d\n", t1.nLen);    
  107.    
  108.     t1.sz[0] = 'S';
  109.     t1.sz[1] = 'O';
  110.     t1.sz[2] = 'N';
  111.     t1.sz[3] = 'Y';
  112.     t1.sz[4] =  0 ;  
  113.    
  114.     printf("t1.sz   = %s\n", t1.sz);          
  115. }
  116.  
  117. */
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.  
  137.  
  138.  
  139.  
  140.  
  141. /*
  142.  
  143. #include<stdio.h>
  144.  
  145. void foo(char *);
  146.  
  147.  
  148. /////////////////////////////////////////////////////
  149. int main()
  150. {
  151.     char sz[] = "SONY";
  152.    
  153.     foo(&sz[2]);
  154. }
  155.  
  156.  
  157.  
  158. /////////////////////////////////////////////////////
  159. void foo(char *p)
  160. {
  161.     p -= 2;
  162.    
  163.     printf("%s\n",  p);
  164. }
  165.  
  166.  
  167.  
  168.  
  169. */
  170.  
  171.  
  172.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement