Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int myarray[5][3] = {
- {
- 10,20,30
- },
- {
- 40,50,60
- },
- {
- 70,80,90
- },
- {
- 110,120,130
- },
- {
- 140,150,160
- }
- };
- int main(){
- printf("%d\n",myarray[2][1]);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement