1 #include <stdio.h>
2 
3 int
4 main(int argc, char **argv)
5 {
6 	int a;
7 	char buf[10], buf2[a];
8 	sscanf(buf, "%s", buf2);
9 	return 1;
10 }
11