C语言二级题目

#include
#include
void yi_39(){
    int *a,*b,*c;
    a=b=c=(int*)malloc(sizeof(int)); // abc 指向一个整型的内存空间
    *a=1;
    *b=2,*c=3; // 最后赋值的,保留该空间内
    a=b;
    printf("%d %d %d",*a,*b,*c);
    printf("hell");
}
// 兼顾从小到大和从大到小
void san_27(int b[],int n,int flag){
    int i,j,t;
    for(i=0; ib[j]:b[i]0;x--){
        if(x%3){
            printf("%d",x--);
            continue;
        }
        printf("%d",--x);
    }
}

// ++a,a++的区别
void test_plus_plus(){
    int a=10,b=10;
    printf("%d\n",a--);
    printf("%d",--b);
}

void test_comma(){
    // int b=2,3,4; 这样会出错
    // printf("%d\n",b);
    int a=2;
    int b=3;
    int c=(1,2,4,5);
    printf("%d\n",c);
}

void test_char(){
    char c1='x';
    char c2='\\';
    char c3='%';
    char c4='\101';
    char c5='\x61';
    printf("%c,%c,%c,%c,%c\n",c1,c2,c3,c4,c5);
}

void testscanf_string(){
    char c[3];
    scanf("%s",c);
    // 输入字符串,输出也是相应字符串,跟长度没有任何关系
    printf("%s\n",c);
}

// 需要注意的题目
void test_pointer(){
    int a[3]={1,2,3};
    int *p;
    p=a;
    printf("%d\n",*p++); // 先算*p  再指针+1
    printf("%d\n",(*p)++);// 指针所指的元素加1
    printf("%d\n",*p);
}

void test_pointer_pointer(){
    int a=2,*p;
    p=&a;
    int **q=&p; // 指针的指针
    printf("%d,%d,%d\n",a,*p,*q);
}

// 有趣的题目
void f123(int *p1){
    int s=3;
    p1=&s;
}
// main()
/*
    int a=1;
    int *p=&a;
    f123(p); // 此时不改变p所指的值
    printf("%d\n",a);  
    printf("%d\n",*p);
*/

// 神奇的题目
void test_strlen(){
    char s1[]={'1','2','a'};
    char s2[10]={'1','2','a'};
    printf("s1 length:%d\n",strlen(s1));
    printf("s2 length:%d\n",strlen(s2));
}

 

你可能感兴趣的:(C语言)