Advertisement
dllbridge

Untitled

Jan 15th, 2025
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 2.41 KB | None | 0 0
  1.  
  2. #include <iostream>
  3. using namespace std;
  4.  
  5. int _strlen(const char *hgjhghgj);
  6.  
  7. char sz[99] = "SONY Pictures";
  8.  
  9.  
  10.  
  11. //////////////////////////////////////////////////
  12. int main()
  13. {
  14.    
  15.     for(int i = 0; i <= 4; i++)
  16.     {
  17.    
  18.        cout << (int)sz[i] << " = " << sz[i] << endl;
  19.    
  20.     }
  21.  
  22. }
  23.  
  24.  
  25.  
  26. //////////////////////////////////////////////////
  27. int _strlen(const char *psz)
  28. {
  29.        
  30.      int n = 0;
  31.  
  32.  
  33.        
  34.  
  35.  
  36. return n;    
  37. }
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47. /*
  48. #include <iostream>
  49. using namespace std;
  50.  
  51. #include <stdlib.h>
  52.  
  53.  
  54. int n = 111;  
  55.  
  56.  
  57.  
  58. //////////////////////////////////////////////////
  59. int main()
  60. {
  61.  
  62.     int *p = (int*)malloc(4);
  63.    
  64.     *p = 555;
  65.    
  66.     cout << "*p = "<< *p << endl;
  67.    
  68.     int &r = *p;
  69.    
  70.     cout << " r = "<< r << endl;    
  71.    
  72.    
  73.     cout << "           p = "<<  p << endl;  
  74.  
  75.     cout << "address of r = "<< &r << endl;      
  76. }
  77.  
  78.  
  79. */
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92. /*
  93.  
  94. #include <iostream>
  95. using namespace std;
  96.  
  97.  
  98.  
  99.  
  100. int n = 111;  
  101.  
  102. int *p = &n;
  103.  
  104. int &r = n;
  105.  
  106. //////////////////////////////////////////////////
  107. int main()
  108. {
  109.  
  110.    
  111.    
  112.     cout << "n = "<< *p << endl;
  113.    
  114.     cout << "address of n = "<< &n << endl;
  115.     cout << "address of n = "<<  p << endl;
  116.     cout << "address of p = "<< &p << endl;  
  117.  
  118.     cout << "address of r = "<< &r << endl;            
  119. return 0;
  120. }
  121.  
  122.  
  123. */
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135. /*
  136. #include <iostream>
  137. using namespace std;
  138.  
  139.  
  140.  
  141.  
  142. int n = 111;  
  143.  
  144. int *p = &n;
  145.  
  146.  
  147. //////////////////////////////////////////////////
  148. int main()
  149. {
  150.  
  151.    
  152.    
  153.     cout << "n = "<< *p << endl;
  154.    
  155.     cout << "address of n = "<< &n << endl;
  156.     cout << "address of n = "<<  p << endl;
  157.     cout << "address of p = "<< &p << endl;  
  158.            
  159. return 0;
  160. }
  161.  
  162.  
  163. */
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181. /*
  182.  
  183. #include <iostream>
  184. using namespace std;
  185.  
  186.  
  187.  
  188. namespace Sobolev
  189. {
  190.    int n = 111;  
  191. }
  192.  
  193. using namespace Sobolev;
  194. //////////////////////////////////////////////////
  195. int main()
  196. {
  197.  
  198.     int n = 71;    
  199.    
  200.     cout << "n = "<< n << endl;
  201.    
  202. return 0;
  203. }
  204.  
  205.  
  206. */
  207.  
  208.  
  209.  
  210.  
  211.  
  212.  
  213.  
  214.  
  215.  
  216.  
  217.  
  218.  
  219.  
  220.  
  221.  
  222.  
  223.  
  224.  
  225.  
  226. /*
  227.  
  228. #include <iostream>
  229. using namespace std;
  230.  
  231.  
  232. char sz[99] = "SONY";
  233.  
  234. //////////////////////////////////////////////////
  235. int main()
  236. {
  237.  
  238.     int n = 71;    
  239.    
  240.     cout << " Hello ! " << sz << " size of int = " << sizeof(int) << endl;
  241.    
  242. return 0;
  243. }
  244.  
  245.  
  246.  
  247.  
  248.  
  249. */
  250.  
  251.  
  252.  
  253.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement