changeset 22:89f80ab5efe2 default tip

merged
author kazz <kazz@cr.ie.u-ryukyu.ac.jp>
date Fri, 19 Feb 2010 12:39:52 +0900
parents 5b83350011d6 (current diff) 9553f4518b62 (diff)
children
files test.c
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/test.c	Fri Feb 19 07:28:12 2010 +0900
+++ b/test.c	Fri Feb 19 12:39:52 2010 +0900
@@ -4,5 +4,7 @@
 	int a, b;
 	a = 10; b = 11;
 	printf("hello %d\n", a + b);
+	printf("hello %d, %d\n", a = 10, b = 11);
+	printf("hello %d\n", a = 10, b = 11);
 	return 0;
 }