问题(能给我个解答么?)

1:如何设置Oxygen XML Editor的代码背景主题?有没有已经写好的xml文件供导入使用?(白色的背景实在太刺眼,我简单的设置了咖啡色的背景,暂且用着,背景色为RGB(195,171,141),在Preference->Edit modes->Text->Editor Background Color)

这个已经解决咯,我提供一个配色主题,截图如下:

配色方案嘛,下载地址http://download.csdn.net/detail/still_ice_water/7124033

 

2:如何写一个批处理文件得到一个快捷方式文件的链接位置?

3:如下程序会抛出未知异常,可是问题出现在哪儿呢?

 1 #include <stdio.h>
 2 int main()
 3 {
 4     int count=10;
 5     char *d="0123456789",*d1=d;
 6     char *s="abcdefghij",*s1=s;
 7     while(count--)
 8     {
 9         printf("count---%d---d:%c----s:%c\n",count,*d1,*s1);
10         *d1++=*s1++;
11     }
12     printf("Result------------->%s",d);
13     return 0;
14 }

2014.1.9

(未完待续……)

posted @ 2013-12-23 13:32  KillerLegend  Views(297)  Comments(0)    收藏  举报