Vivado hls 对C语言的限制需要改哪些怎么改代码 5
我现在想把C代码在VIvadohls上高级综合可是有限制需要改代码请问有木有大神可以帮帮忙!!!急急急...
我现在想把C代码在VIvadohls上高级综合 可是有限制 需要改代码 请问有木有大神可以帮帮忙!!!急急急
展开
展开全部
操作编码如下:
int strlen(char *p)
{
int i=0;
while(*p++)i++;
return i;
}
#include <stdio.h>
#include <string.h>
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);
}
int strlen(char *p)
{
int i=0;
while(*p++)i++;
return i;
}
#include <stdio.h>
#include <string.h>
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);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询