Mercurial > hg > CbC > CbC_examples
view test03.c @ 5:90e6146d24cd
fix stack1.c
author | Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 22 Oct 2014 19:02:57 +0900 |
parents | 35d6eabeadb0 |
children |
line wrap: on
line source
extern void test02() ; extern void test03() ; extern int data; extern void test01() { test02(); } extern void test02() { test03(); } extern void test03() { data = 3; } int main() { test01(); }