Advertisement
Guest User

After

a guest
Dec 15th, 2015
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.94 KB | None | 0 0
  1. int main(void)
  2. {
  3.  
  4.     int alone;
  5.  
  6.     long lint1;
  7.     long *lintptr1;
  8.     long lintaray10[10];
  9.    
  10.    
  11.     long lint2 = 3;
  12.     long *lintptr2;
  13.     long lintaray2[2] = { 1, 2 };
  14.    
  15.            
  16.     int int3;
  17.     int intarray[4] = { 1, 2, 3, 4 };
  18.    
  19.     const int cint3;
  20.     const int cintarray[4] = { 1, 2, 3, 4 };
  21.    
  22.  
  23.     const int cx;
  24.     const int cy;
  25.    
  26.     volatile int vx;
  27.     volatile int vy;
  28.    
  29.  
  30.     signed char sc1 = 'h';
  31.     signed char sc2;
  32.    
  33.     long long ll1;
  34.     long long ll2;
  35.    
  36.  
  37.     const char *literal = "HiClang";
  38.     const char *literal2 = "empty";
  39.     const char literal3[6] = "three";
  40.    
  41.  
  42.     struct Structy structA;
  43.     struct Structy *structB;
  44.     struct Structy structC = { 2 };
  45.    
  46.     StructT structAA;
  47.     StructT *structBB;
  48.     StructT structCC = { 2 };
  49.    
  50.  
  51.     Structy2 structAAA;
  52.     Structy2 *structBBB;
  53.     Structy2 structCCC = { 2 };
  54.    
  55.    
  56.     return 0;
  57.  
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement