view CbC-examples/normal.c @ 54:f62c169bbc24

Added tag cbc-4.4.3 for changeset d0e37615691e
author kent <kent@cr.ie.u-ryukyu.ac.jp>
date Sun, 07 Feb 2010 18:30:54 +0900
parents 4c6926a2b9bc
children
line wrap: on
line source

#include<stdio.h>
#include<stdlib.h>

//size_t size;
int size;
typedef int test_int;

test_int ti;

void end(){
	exit(0);
}

int main(int argc, char **argv){
	size=0;
	ti=10;

	printf("main: ");
	printf("normal:%d\n", argc);

	size = 10;
	printf("size = %d\n", size);
	printf("  ti = %d\n",   ti);
	end();
}