首页

2010年5月29日星期六

C语言GOTO函数的用法

#include
int main(void)
{
printf("hello!");
goto errer;
errer:printf("wrong!");
return 0;
}

没有评论:

发表评论