有如下一段代码,下列选项中,选项()是该段代码的正确输出。
#include<stdio.h>
#include<string.h>
#define PRAISE "NowCoder is benefit to everyone concerned."
int main(){
printf("The phrase of PRAISE has %zd letters ",strlen(PRAISE));
printf("and occupies %zd memory cells.",sizeof(PRAISE));
return 0;
}
