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> | |
| int main(void) | |
| { | |
| int arr[] = {45, 69, 27, 3, 99, -1, 0, 948, 34, 46}; | |
| int size = 0; | |
| size = sizeof(arr) / sizeof(int); | |
| printf("Size: %d.", size); |
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
| git push -u github master | |
| is way better than | |
| git push github master. | |
| -u allows you to push your master branch to github with more ease in the future: | |
| from then on, just type | |
| git push | |
| and as long as you're on your master branch, it will automatically push your master branch to github! |
NewerOlder