我希望它按原样打印输出。目前我正在使用此代码
#include <stdio.h>
#include <ctype.h>
#define BUFFER_SIZE 2000
int main(void)
{
char buffer[BUFFER_SIZE];
while(fgets (buffer, BUFFER_SIZE, stdin) !=NULL)
{
printf("%s",buffer);
}
return 0;
}
然后我希望程序能够跳过原始文本中的 html 标签,但我不知道如何解决这个问题。