main int a=2c=5; printfa=db=dnac;
There is an error in this code. It should be:
main()
{
int a=2,c=5;
printf("a=%d,c=%d\n",a,c);
}
The format specifier %%d should be %d to print the values of the variables a and c.
原文地址: http://www.cveoy.top/t/topic/g1FG 著作权归作者所有。请勿转载和采集!