view test.c @ 21:5b83350011d6

change
author kazz <kazz@cr.ie.u-ryukyu.ac.jp>
date Fri, 19 Feb 2010 07:28:12 +0900
parents 2edb9c7e0f12
children 89f80ab5efe2
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 + b);
	return 0;
}