sum函数没有指定任何返回类型,它也没有任何返回语句仍然是turbo c编译器上的输出是5.任何人都可以解释为什么,我想它是#s因为printf函数打印5个字符,并可能返回打印的字符数。
#include<stdio.h>
#include<conio.h>
sum()
{
printf("hello");
}
void main()
{
int k;
k = sum();
clrscr();
printf("%d",k);
getch();
}