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