下面程序运行后i,j,m,n的值是( )。
#include<stdio.h> void main( ) { int i,j,m,n; i=8;j=10; m=++i;n=j++; printf("%d,%d,%d,%d",i,j,m,n); }
Copyright ©