执行以下程序,以下表述中错误的一个是? ( )
def demo(a,b): c=a**2+b b=a return c a=10 b=100 c=demo(a,b)+a
该函数名称为demo
执行该函数后,变量a的值为10
执行该函数后,变量b的值为100
执行该函数后,变量c的值为200