fall through C語言的一個失誤

#include<stdio.h> int main() { int i=2; switch(i) { case 1: point: printf("%s\n","I am the first one"); //break; case 2: printf("%s\n","I am the second one"); case 3: goto point; default:
相關文章
相關標籤/搜索