zoukankan      html  css  js  c++  java
  • c++


    char x[10]="beijing";
    char c[3][10];
    for(int i=0;i<3;i++)
    {
    cin>>c[i];
    }
    if(strcmp(x,c[1])==0)
    cout<<"equal"<<endl;


    ====================================

    char *ch;
    ch=(char*)malloc(n*sizeof(char));

     

     

    ------------------------------
    void opp(int *p)
    {
    *p=3;
    }
    void ppo(void (*opp)(int *n))
    {
    int n=7;
    opp(&n);
    cout<<n;
    }
    int main()
    {
    ppo(opp);
    return 0;
    }
    ------------------------------
    void opp(int *p)
    {
    *p=3;
    }
    void ppo()//void (*opp)(int *n))
    {
    int n=7;
    opp(&n);
    cout<<n;
    }
    int main()
    {
    ppo();
    return 0;
    }
    ------------------------------
    void ppo(void (*opp)(int *n))
    {
    int n=7;
    opp(&n);
    cout<<n;
    }
    void opp(int *p)
    {
    *p=3;
    }
    int main()
    {
    ppo(opp);
    return 0;

    ===============================


    #include<bits_stdc++.h>
    using namespace std;
    void get(char *p)
    {
    cout<<p<<endl;
    char c[]="bei";
    if(!strcmp(p,c))
    cout<<"yes";
    else
    cout<<"no";
    }
    int main ()
    {
    char c[10];
    cin>>c;
    get(c);
    return 0;
    }


    ------------------------------
    #include<bits_stdc++.h>
    using namespace std;

    int main ()
    {
    int i;
    int a[6];
    for(i=0;i<6;i++)
    {
    a[i]=(rand()%100);//(rand()%(b-a))+a //a~b区间
    cout<<a[i]<<endl;
    }
    return 0;
    }

     ==========================================

    #include<iostream>
    using namespace std;
    int main()
    {
    char c[2][10];
    char ci[8]="abcsd";
    int i=0,j=0;
    while((c[1][i++]=ci[j++])!='');
    cout<<c[1];//cout can putout chars!
    return 0;
    }

     

     

     

     

     

     

     

    }

    朝闻道
  • 相关阅读:
    内网Windows Server时间自动同步
    处理sqlserver数据
    virtualenv使用
    vue过渡动画效果
    vue视图
    vue组件
    Vue实例
    vue介绍
    Bootstrap布局
    Bootstrap组件
  • 原文地址:https://www.cnblogs.com/wander-clouds/p/8443688.html
Copyright © 2011-2022 走看看