fork download
  1. #include <stdio.h>
  2.  
  3. #define SIZE 3
  4.  
  5. int main()
  6. {
  7. int arr[SIZE] = {1, 2, 3};
  8. size_t arr_sz = sizeof arr / sizeof *arr;
  9. if (arr_sz == SIZE)
  10. puts("well u r kiddin right?");
  11. }
  12.  
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
well u r kiddin right?