Advertisement
tomsim

C array initialization

Dec 1st, 2015
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.24 KB | None | 0 0
  1. har tab[][4] =
  2. {
  3. //   0 1 2 3
  4.     {7,1,2,0}, //0 start here v=3
  5.     {3,1,7,0}, //1 3*1(-0-2-3 -1
  6.     {4,7,2,0}, //2 3*2(-0-1-3
  7.     {3,1,5,7}, //3 3-1*0(-2-3 -1
  8.     {4,6,2,7}, //4 3-2*0(-1-3
  9.     {3,7,5,8}, //5 3-1-0*2(-3 -1
  10.     {4,6,7,9}, //6 3-2-0*1(-3
  11. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement