字符串的表示方式
#include <stdio.h>
#define STR "I am a string in define"
#define MAX_CHAR_LENGHT 81
int main()
{
char * str = "I am a string in point";
char words[MAX_CHAR_LENGHT] = "I am a string in array";
puts("here are some strings:");
// puts函数只显示字符串,而且自动在显示的字符串末尾加上换行符
puts(STR);
puts(str);
puts(words);
words[4] = 'o';
puts(words);
return 0;
}

把字符串看作指针
#include <stdio.h>
int main()
{
printf("%s, %p, %c", "we", "are", *"Space"); // %p打印一个地址, *"Space"表示Space字符串地址的指针
return 0;
}

字符串数组和指针
看下面例子
#include <stdio.h>
#define MSG "i am special"
int main()
{
char * chrPoint = MSG;
char chrArray[] = MSG;
printf("address MSG is :%p\n", MSG);
printf("address \"i am special is\" :%p\n", "i am special");
printf("address chrPoint is :%p\n", chrPoint);
printf("address chrArray is :%p\n", chrArray);
return 0;
}

可以看到,数值的地址是没有发生变化的,只是内容改变了。
数组和指针的区别
char strarray[] = "i love china";
char * strpoint = "i love china";
以上两行代码的区别是:数组名strarray是常量,而指针strpoint 是变量。只有指针表示法可以进行递增操作。
字符串数组
#include <stdio.h>
#define SLEN 40
#define LIM 5
int main()
{
const char * mytalents[LIM] = {
"my first string ...",
"my sencond string...",
"my third string",
"my fourth string",
"my fifth string"
};
char yourtalents[LIM][SLEN] = {
"yours first string ...",
"yours sencond string...",
"yours third string",
"yours fourth string",
"yours fifth string"
};
printf("lets compare talents\n");
printf("%-36s %-25s\n", "mytalents", "yourtalents");
for (size_t i = 0; i < LIM; i++)
{
printf("%-36s %-25s\n", mytalents[i], yourtalents[i]);
}
printf("size of mytalent %d size of yourtalent %d", sizeof(mytalents), sizeof(yourtalents));
return 0;
}

上述字符串表示中,mytalent是一个内含5个指针的数组,yourtalent是一个内含5个数组的数组。
指针和字符串
#include <stdio.h>
#define SLEN 40
#define LIM 5
int main()
{
char * str1 = "this is a test";
char * temp;
temp = str1;
printf("str1 = %s, &str1 = %p str1 = %p\n", str1, &str1, str1);
printf("temp = %s, &temp = %p temp = %p\n", temp, &temp, temp);
return 0;
}

可以看到第三个打印,指针str1和指针temp的值是相同的,也就是temp指针也指向str1指针指向的地址。
字符串函数
char *strcpy(char * restrict s1, const char * restrict s2);
该函数把s2指向的字符串拷贝至s1指向的字符串,返回值是s1
char *strncpy(char * restrict s1, const char * restrict s2, size_t n);
该函数把s2指向的字符串拷贝至s1指向的位置,拷贝的字符数不超过n看,其返回值是s1,该函数不会拷贝空字符后面的字符
char *strchr(const char *s, int c);
如果s字符串中包含字符c,该函数返回指向s字符串首次出现的c字符的指针,如果未找到c,则返回空指针
char *strpbrk(const char * s1, const char *s2);
如果s1字符中包含s2字符中的任意字符,则该函数返回s1字符串首位置的指针,如果在s1字符串中未找到任何s2中的字符,则返回空字符
char *strrchr(const char *s, int c);
该函数返回s字符串中c字符最后一次出现的位置,如果未找到c字符,则返回空指针
char * strstr(const char * s1, const char *s2);
该函数返回指向s1字符串中s2字符串出现的首位置,如果s1中没有找到s2,则返回空指针
atoi函数
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char ** args, char ** env)
{
printf("argc is %d\n", argc);
for (size_t i = 0; i < argc; i++)
{
printf("args[%d] is :%s\n",i, args[i]);
}
printf("atoi result %d\n", atoi("325"));
printf("atoi result %d\n", atoi("42hello")); // 只返回整数部分
printf("atoi result %d\n", atoi("hello world")); // 如果未包含数字,则返回0
// strtol 把字符串转换成long类型的值
// strtod 把字符串转换成double类型的值
return 0;
}

static变量作用域
#include <stdio.h>
#include <stdlib.h>
void more(void);
int main(int argc, char ** args, char ** env)
{
for (size_t i = 0; i < 3; i++)
{
printf("第%d次调用\n", i + 1);
more();
}
}
// 变量的作用域
// 这里count存储在静态内存中,它从程序被载入到程序结束期间都存在,但是他的作用于定义在more函数块总,只有在执行该函数是,成名徐次啊能使用count访问它所
//指向的对象,但是该函数可以给其他函数提供该存储区的地址,以便间接访问该对象
void more(void) {
static int count = 0;
int number = 0;
printf("number is :%d count is :%d\n", ++number, ++count); //静态变量count保存了被递增后的值,但是number每次都是0
}
//寄存器变量
// 变量通常存储在计算机中,可以是存储类别说明符register声明寄存器变量,声明未register寄存器变量不一定成功,编译器会衡量当前资源,或者直接忽略register请求,
// 这种青年狂,寄存器变量就编程普通的自动变量,即使这样,仍然不能对该变量使用地址运算符。

网友评论