单选题 对下列程序段的描述正确的是( )。
#include<iostream.h>
int fun(int,int);
void main()

cout<<fun(1,2)<<endl;

int fun(int x,int y)

return x+y;