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
thor | |
├── contrib | |
│ ├── bar | |
│ └── foo | |
├── include | |
│ └── thor | |
│ ├── lib-1 | |
│ │ └── hdr-1.h // names in thor::lib-1 | |
│ └── lib-2 | |
│ └── hdr-2.h // names in thor::lib-2 |
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
#include <stdio.h> | |
#define NUM_OF_ELEMENTS(array) (sizeof(array)/sizeof(array[0])) | |
main() { | |
int ys[] = {2011, 2012, 2100, 2400}; | |
int i = 0, m = 0; | |
for(i = 0; i < NUM_OF_ELEMENTS(ys); i++) { |