怎么给char *s赋值
有两种方式。第一种是把*s当成一种指向一个char变量的指针。第二种是把*s当成一种指向一个char字符集的指针(就是char型的数组)。
以下两个程序。第一个把*s当成一种指向一个char变量的指针,输出a。第二个把*s当成一种指向一个char字符集的指针(就是char型的数组),输出abcd。
测试平台:VS2013
#include《stdio.h》
int main()
{
char *s;
char a = ’a’;
s = &a;
printf(“%c“,*s);
}
#include《stdio.h》
int main()
{
char *s;
char a = “abcd“;
s = a;
printf(“%s“,s);
}
excluded person是什么意思
excluded person
[法]被拒绝入境的人;
网络
豁除人士; 免受限制人士;
双语例句
1
( 26) The law should specify the assets, if any, that are excluded from the estate where the debtor is a natural person.
(26)法律应指明在债务人是自然人时应排除在破产财产之外的任何资产。
-char类型怎么赋值
c语言中“strlen()”怎么用
他是一个统计字符串长度的函数,给你举个例子:希望能帮到您!
#include《stdio.h》
#include《string.h》
void f(char a);
int main()
{
char a;
printf(“input 4 figures:\n“);
gets(a);
f(a);
return 0;
}
void f(char a)
{
int i,j;
i=strlen(a);
for(j=0;j《=i-1;j++)
{
printf(“%c“,a[j]);
printf(“ “);
}
printf(“\n“);
}
-c