有以下程序
#include <stdio.h>
void swap(int a,int b)
{
int t;
t = a;
a = b;
b = t;
}
int main()
int a = 1;
int b = 2;
swap(a,b);
printf("%d,%d\n",a,b++);
return 0;
程序运行后的输出结果是( )。