Advertisement
dllbridge

Untitled

Jan 4th, 2025
339
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.60 KB | None | 0 0
  1.  
  2.  
  3.  
  4. #include  <stdio.h>
  5. #include <stdlib.h>
  6. #include <string.h>
  7.  
  8.  
  9.  
  10. ////////////////////////////////////////////
  11. class string
  12. {
  13.      
  14.         public:
  15.            
  16.     char *psz0,                                            
  17.          *psz1,
  18.          *psz2;
  19.  
  20.       string();                                            
  21.  
  22. } str1, str2, str3;
  23.  
  24.  
  25.  
  26.  
  27. ////////////////////////////////////////////
  28. int main()
  29. {
  30.    
  31.     printf("%s", str1.psz0);
  32.    
  33. return 0;
  34. }
  35.  
  36.  
  37.  
  38.  
  39.  
  40. ///////////////////////////////////////////////////////////////////////
  41.  string::string()
  42. {
  43.                  
  44.     static char sz[5] = "void";
  45.  
  46.     psz0 = sz;                                          
  47. }  
  48.  
  49.  
  50.  
  51.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement