C语言用函数写两数之和

#include<stdio.h>void main(){ int a,b,sum; scanf("%d,%d",&a,&b); sum=a+b; printf("%d+%d=%d",a,b,sum)

腾讯文库C语言用函数写两数之和C语言用函数写两数之和