Guest User

Untitled

a guest
Sep 25th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5.  
  6. int vetor[][3] = {1,2,3,4,5,6,7,8,9,10,11,12};
  7.  
  8. int valor= *(vetor[1]+1)+**(vetor+3);
  9. printf("%d",valor);
  10.  
  11. }
  12.  
  13. #include <stdio.h>
  14.  
  15. int main() {
  16. int vetor[4][3] = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}, {10, 11, 12}};
  17. printf("%d", vetor[1][0] + 1 + vetor[3][0]);
  18. }
Add Comment
Please, Sign In to add comment