单项选择题

以下程序运行后,输出结果是( )。
#define PT 5.5
#define S(x)PT*x*x
#include<stdio.h>
main()
int a=1,b=2;
prinf("%4.1f\n",S(a+b));

A.49.5
B.9.5
C.22
D.45.0