Mercurial > hg > CbC > CbC_examples
view normal.c @ 2:35d6eabeadb0
modify Makefile. we can use makefile to compile outside CbC examples. (some examples are not compilable...)
author | Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 22 Oct 2014 02:06:29 +0900 |
parents | bacef8675607 |
children | 0d306982c8b9 |
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(); }