source: CIVL/examples/languageFeatures/pointerAddBad3.c@ 5ddac35

1.23 2.0 main test-branch
Last change on this file since 5ddac35 was 7db6b12, checked in by Ziqing Luo <ziqing@…>, 12 years ago

forgot stdio header

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@1716 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 111 bytes
Line 
1#include <stdio.h>
2
3int main(int argc, char * argv[]) {
4 int a[3];
5 int *p = a + 100;
6
7 printf("%p", p);
8}
9
Note: See TracBrowser for help on using the repository browser.