Created
November 28, 2018 09:33
-
-
Save dbc2201/5641fef1c2d5f6f21af031a996b12fb0 to your computer and use it in GitHub Desktop.
basic array code
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() | |
| { | |
| // declaring an integer array of size 10 | |
| int array1[10]; | |
| // declaring an float array of size 10 | |
| float array2[10]; | |
| // declaring an double array of size 10 | |
| double array3[10]; | |
| return 0; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment