view test.c @ 19:2edb9c7e0f12

merged
author kazz <kazz@cr.ie.u-ryukyu.ac.jp>
date Fri, 19 Feb 2010 07:12:38 +0900
parents d8872ceae3e3 97fda82e4b50
children 9553f4518b62 5b83350011d6
line wrap: on
line source

#include <stdio.h>

int main(int argc, char *argv[]) {
	int a, b;
	a = 10; b = 11;
	printf("hello %d\n", a = 10, b = 11);
	return 0;
}