码迷,mamicode.com
首页 > 其他好文 > 详细

测试字体

时间:2018-05-05 11:19:57      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:编程语言   C/C++   


你的程序代码如下,请测试

int zhoe_arrcopy(char d[],char a[],char b[],char c[],int a_count,int b_count,int c_count)

{
    
    int i=0;    
    
    for(i=0;i<a_count;i++)
        
    {
            
        d[i]=a[i];
        
    }
    
    for(i=0;i<b_count;i++)
        
    {
            
        d[i+a_count]=b[i];
        
    }
    
    for(i=0;i<c_count;i++)
        
    {
            
        d[i+a_count+b_count]=c[i];
        
    }

    
    return 0;

}

测试字体

标签:编程语言   C/C++   

原文地址:http://blog.51cto.com/laoxiong/2112927

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!