会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Tonybeijing
博客园
首页
新随笔
联系
订阅
管理
2024年1月14日
C 、 C++ 、QT中,对单个汉字处理的5种方式!
摘要: int main() { cout<<" C语言中 "<<endl; cout<<"把中国修改成美国"<<endl; char str[20]="中国"; cout<<str<<endl; char str1[3]="美"; strncpy(str,str1,2); cout<<str<<endl;
阅读全文
posted @ 2024-01-14 01:34 万佛从心
阅读(41)
评论(0)
推荐(0)
编辑
2024年1月12日
C语言中这几种数组,弄明白了吗?int(*pai[2])[5],int *aapi[2][2], int **p[2], int *numT[5], int(*num2)[5]
摘要: int main() { int a[5]= {1,3,5,7,9}; int(*num1)[5]=&a; int *num[5]= {&a[0],&a[1],&a[2],&a[3],&a[4]}; int b[5]= {2,4,6,8,10}; int(*num2)[5]=&b; int *num
阅读全文
posted @ 2024-01-12 00:46 万佛从心
阅读(3)
评论(0)
推荐(0)
编辑
《汇编语言》王爽第四版课程设计一答案的详细说明。
摘要: ![image](https://img2024.cnblogs.com/blog/3372113/202401/3372113-20240112003846169-1280898320.jpg) ![image](https://img2024.cnblogs.com/blog/3372113/202401/3372113-20240112003937160-861725973.jpg) ![i
阅读全文
posted @ 2024-01-12 00:46 万佛从心
阅读(106)
评论(0)
推荐(0)
编辑
2024年1月11日
QT6.4.3中,关于QString asprintf(const char*cformat,...)与int asprintf(char**strp,const char*fmt,...)的使用问题
摘要: QT中QString类的Static Public Members(静态公众成员)定义了QString asprintf(const char*cformat,...)。与Linux下C语言的定义是有区别的。网上很多搞混了二者的用法,甚至有的在QT下用对象去调用asprintf()的例子! aspr
阅读全文
posted @ 2024-01-11 01:35 万佛从心
阅读(522)
评论(0)
推荐(0)
编辑
公告