Last active
January 7, 2024 08:59
-
-
Save AndreiCherniaev/5d65a2cf1909547895e1f97e0d125cde to your computer and use it in GitHub Desktop.
Возвращает количество элементов массива, а не размер в байтах как sizeof()
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define elmsof(arr) sizeof(arr)/sizeof(arr[0]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment