Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<stdio.h>
- int main()
- {
- int i,j;
- int m,n;
- int map[n + 1][m + 1];
- for(i = 1; i <= n ; i++){
- for(j = 1; j <= m ; j++)
- {
- scanf("%d", &map[i][j]);
- }
- }
- printf("map[%d][%d] = %d\n", i,j, map[i][j]);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment