Chinaunix首页 | 论坛 | 博客
  • 博客访问: 197046
  • 博文数量: 36
  • 博客积分: 2501
  • 博客等级: 少校
  • 技术积分: 420
  • 用 户 组: 普通用户
  • 注册时间: 2007-04-18 23:27
个人简介

时间就是一切。

文章分类

全部博文(36)

文章存档

2023年(1)

2017年(2)

2016年(6)

2014年(1)

2009年(1)

2008年(15)

2007年(10)

我的朋友

发布时间:2017-08-13 11:32:16

C 函数指针测试

//error
void swapError(int *p, int *q)
{
int *t;//空指针
*t=*p;//这里不能这样赋值
*p=*q;
*q=*t;
return;
}
......【阅读全文】

阅读(1166) | 评论(0) | 转发(0)

发布时间:2017-08-13 11:19:29

字符串相加
int _tmain(int argc, _TCHAR* argv[])
{
char result[20]={0};
GetSum(16, "abcdef", "af", result);
printf("result = %s\n", result);
return 0;
}

......【阅读全文】

阅读(1066) | 评论(0) | 转发(0)
给主人留下些什么吧!~~

DEJUN_cu2023-04-03 17:46

adrain001:你好,在http://blog.chinaunix.net/u1/36490/showart_478131.html中按照你的说明在进行到: 设置Qt的环境变量: echo 'export PATH=/usr/local/Trolltech/QtopiaCore-4.2.2-arm/bin:$PATH' >> /root/.bashrc 时出现提示:bash: /root/.bashrc: Permission denied 前面加上sudo仍然如此,请问是什么原因?期待您的回答!

权限问题!

回复  |  举报

DEJUN_cu2023-04-03 17:43

happycozy:你好; 可以和你联系一下吗? 有个问题想向你请教一下,希望能快点给我回复哟,不甚感激!!! QQ:541158955

描述一下你的问题!

回复  |  举报

chinaunix网友2009-05-14 15:14

你好,我现在需要你的帮忙。关于一个单片机的程序。把你的QQ给我吧。我的QQ408058196

回复 |  删除 |  举报

adrain0012009-03-31 16:40

你好,在http://blog.chinaunix.net/u1/36490/showart_478131.html中按照你的说明在进行到: 设置Qt的环境变量: echo 'export PATH=/usr/local/Trolltech/QtopiaCore-4.2.2-arm/bin:$PATH' >> /root/.bashrc 时出现提示:bash: /root/.bashrc: Permission denied 前面加上sudo仍然如此,请问是什么原因?期待您的回答!

回复  |  举报

happycozy2008-11-24 21:16

你好; 可以和你联系一下吗? 有个问题想向你请教一下,希望能快点给我回复哟,不甚感激!!! QQ:541158955

回复  |  举报
留言热议
请登录后留言。

登录 注册