以下是给出分段错误错误的示例代码
#include<stdio.h> void fun (); int main() { fun (); return 0; } void fun () { int i; for (i=0;i <4;i++) { fun (); printf ("%d",i); } }
c
c ×1