我有html的文本和编程代码(泛型),没有任何区别或标记。有一种方法来标记代码的开始和结束,适合于任何编程代码?
例如:
start message
Hello this is an example
int main(){
char word1[21],word2[21];
int first;
printf("Type in the first word (maximum 20 characters):\n");
scanf("%20s",word1);
other text
ends
我想获得:
Hello this is an examp