Skip to content

Commit

Permalink
build error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Sarvesh-CSE committed Feb 12, 2021
1 parent 76be6f4 commit eb6ac67
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ An example of processing the multidimensional array elements or address arithmet
#include <stdio.h>
int main()
{
unsigned int x[4][3] = {{1,2,3}, {4,5,6}, {7,8,9}, {10,11,12}};
unsigned int x[4][3] = {
{1,2,3}, {4,5,6}, {7,8,9}, {10,11,12}
};
printf("%u, %u, %u", x+3, *(x+3), *(x+2)+3);
return 0;
}
Expand Down

0 comments on commit eb6ac67

Please sign in to comment.