repo.or.cz
/
tinycc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Stop setting -Wno-unused-result switch in Makefile
[tinycc.git]
/
tests2
/
29_array_address.c
blob
bda5ddde2366eee59090762a6cc8966d895baf6a
1
#include <stdio.h>
2
#include <string.h>
3
4
int
main
()
5
{
6
char
a
[
10
];
7
strcpy
(
a
,
"abcdef"
);
8
printf
(
"%s
\n
"
, &
a
[
1
]);
9
10
return
0
;
11
}
12
13
/* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/