C语言实用算法系列之冒泡排序sizeof与strlen的区别
Posted 逆向通信猿
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C语言实用算法系列之冒泡排序sizeof与strlen的区别相关的知识,希望对你有一定的参考价值。
直接看代码
#include <stdio.h>
#include<string.h>
int main()
{
//char s[10] = { 98,68,55,'-','x','y' }; // sizeof=10 strlen =6
//char s[10] = "abc%78"; // 从常量区拷贝赋值,sizeof=10 strlen =6
//char s[] = { 'a','b','c','\0' }; // sizeof=4 strlen=3
//char s[] = "abcd%3"; // sizeof=7 strlen=6
printf("sizeof(s)=%d\n", sizeof(s));
printf("strlen(s)=%d\n", strlen(s));
int a[10] = { 31,40,21,23,6,9,25,11,3,8 };
//冒泡排序
int i = 0;
while (i < 9)
{
int j = 0;
while (j < 9-i) // 0...8
{
if (a[j] > a[j + 1])
{
int t = a[j];
a[j] = a[j + 1];
a[j + 1] = t;
}
++j;
}
++i;
}
i = 0;
while (i < 10)
printf("%d ", a[i++]);
}
以上是关于C语言实用算法系列之冒泡排序sizeof与strlen的区别的主要内容,如果未能解决你的问题,请参考以下文章