mirror of https://github.com/aamine/cbc
fix typo
git-svn-id: file:///Users/aamine/c/gitwork/public/cbc/trunk@4009 1b9489fe-b721-0410-924e-b54b9192deb8
This commit is contained in:
parent
50c4f0ecd5
commit
ffba97e811
|
|
@ -67,11 +67,11 @@ main(int argc, char **argv)
|
|||
*ptr++ = 11;
|
||||
printf(";%d;%d", integers[0], integers[1]);
|
||||
|
||||
// local array with pointer arighmetic
|
||||
// local array with pointer arithmetic
|
||||
*(p + 1) = 'S';
|
||||
printf(";%c", p[1]);
|
||||
|
||||
// local array with pointer arighmetic
|
||||
// local array with pointer arithmetic
|
||||
ptrs[0] = NULL;
|
||||
ptrs[1] = &x;
|
||||
**(ptrs + 1) = 12;
|
||||
|
|
|
|||
Loading…
Reference in New Issue