document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include <stdio.h>
  2.  
  3. #define ARRAY_SIZE(arr)     (sizeof(arr) / sizeof(arr[0]))
  4.  
  5. int main(void)
  6. {
  7.         int a[10];
  8.         typeof(a) b;
  9.  
  10.         printf("%d\\n", ARRAY_SIZE(a));
  11.         printf("%d\\n", ARRAY_SIZE(b));
  12.        
  13.         return 0;
  14. }
');