01 2017 档案
摘要:在source insight的view菜单中点出relation window,然后右键点relation window,选relation window properties,然后把view relation里所有的下拉选项全部选成references,这时候relation window里显示
阅读全文
摘要:登陆服务器root用户命令:su - root 传输文件命令:scp +需要传输linux系统文件+空格+目标linux服务器的用户名@服务器ip地址:+传输的文件路径;例:scp /mnt/work/socket_udp/udp_test weblogic@203.86.61.106:/home/
阅读全文
摘要:1 #include<stdio.h> 2 #include<stdlib.h> 3 4 char* substring(char* ch,int pos,int length) 5 { 6 char* pch=ch; 7 //定义一个字符指针,指向传递进来的ch地址。 8 char* subch=
阅读全文
摘要:strcpy(): 纯文本复制 #include <stdio.h> #include <string.h> int main () { char str[80]; strcpy (str,"these "); strcat (str,"strings "); strcat (str,"are ")
阅读全文