我的布局文件中有一个文本视图。我的 textview 包含简单的 c++ 代码。我已经包含了除 '\0' 字符之外的所有其他特殊字符。谁能告诉我如何在我的布局文件中包含这个错误?
#include<iostream.h>
#include<conio.h>
#include<stdio.h>
void main()
{
clrscr();
char a[100];
int length=0;
cout<<"Enter String:";
gets(a);
while(a[length]!='\0')
length++;
cout<<"Length of String:";
cout<<length;
getch();
}