问题详情
有如下程序#define N 2#define M N+1#define NUM 2*M+1main(){ int i; for(i = 1; i <= NUM; i++) printf("%d ",i);}该程序中for循环执行的次数是A.5 B.6 C.7 D.8