c试题-以下程序的正确运行结果是

#include <stdio.h>
#define M 5
#define N M+M
main()
{
    int k;
    k=N*N*5; printf("%d",k);
}

网友评论0