问答题

以下程序的输出是___________。
#include
void main( )
{
        int  i=-200, j=25;
        printf(“i=%d,j=%-5d”, i,j);
 }

【参考答案】

(1)
i=-200,j=25