码迷,mamicode.com
首页 > 编程语言 > 详细

C语言const char*使用

时间:2020-10-14 20:06:07      阅读:34      评论:0      收藏:0      [点我收藏+]

标签:desc   des   string   usb   ret   %s   pre   rip   name   

#include<stdio.h>
const char*name = "hello audio";
char*usb_name = "ac usb string descriptor";
int main()
{
   name = usb_name;
  // name[0] = ‘a‘;
   printf("name is %s\n",name);

    return 0;
}

  

C语言const char*使用

标签:desc   des   string   usb   ret   %s   pre   rip   name   

原文地址:https://www.cnblogs.com/nowroot/p/13811817.html

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