Mercurial > hg > CbC > CbC_examples
view test_call.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
#include<stdio.h> int test(int a){ printf("a = %d\n", a); return 10*a; } int main(){ test(10); return 0; }