view test.c @ 17:97fda82e4b50

add a b
author kazz <kazz@cr.ie.u-ryukyu.ac.jp>
date Fri, 19 Feb 2010 07:00:59 +0900
parents ec57fdd8c880
children 2edb9c7e0f12
line wrap: on
line source

#include <stdio.h>

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