Ubuntu安装tensorflow 先安装python-dev,再安装tensorflow就好了 $ sudo apt-get install python-dev
操作编码如下:
int strlen(char *p)
{
int i=0;
while(*p++)i++;
return i;
}
#include
#include
void main()
{
char x[3]={0};
x[0]='a';
x[1]='b';
x[2]='c';
int len=strlen(x);
printf("%c %d \r\n",x[6],len);
}
know how to continue