码迷,mamicode.com
首页 >  
搜索关键字:argv    ( 3650个结果
gdb 调试带参数的程序
转载: http://blog.sina.com.cn/s/blog_4b6f784001011yvh.html例子:#include int main(int argc,char *argv[]){ int i = argc; printf("argc:%d\n",i); for(i = 0;i ...
分类:数据库   时间:2014-07-31 20:36:17    阅读次数:294
测试日志
int main(int argc, char* argv[]){ cout<<"Hello!"<<endl; return 0;}hehe
分类:其他好文   时间:2014-07-31 16:46:36    阅读次数:218
EOF
标准c#include int main(int argc, char *argv[]){ long int x; while(scanf("%ld",&x)!=EOF) // while(scanf("%ld",&x)==1) { printf("%d\n",x*x); } return 0;}....
分类:其他好文   时间:2014-07-30 00:58:12    阅读次数:255
debug assertion failed
vs2008 调试报错#include "stdafx.h"int _tmain(int argc, _TCHAR* argv[]){ FILE *fp,*ofp; void filecopy(FILE *,FILE *); if(argc == 1) filecopy(stdin,stdout)....
分类:其他好文   时间:2014-07-30 00:51:52    阅读次数:228
C/C++ 获取代码执行的行数以及文件名
#include #include using namespace std;void _tmain(int argc, TCHAR *argv[]){ int line = __LINE__; string filename = __FILE__; cout<<"the line is:"<<lin...
分类:编程语言   时间:2014-07-29 21:04:12    阅读次数:210
cocoa foundation笔记-1
//数字对象的创建与使用 //main.m #import<Foundation/Foundation.h> int?main(int?argc,?const?char?argv[]) { ????@autoreleasepool{ ????????//创建一个NSNumber“数字对象” ???????...
分类:其他好文   时间:2014-07-29 16:20:29    阅读次数:236
OC 获取城市首字母
解析根据文件里面的内容,读入一个城市,输出所在首字母  比如读入 长春 输出 c 读入 北京 输出 b 不知道文本中的字体是什么格式 读取文件时 程序不能正确运行 运用oc中的字典 initWithObjectsAndKeys 初始化 用值和键 #import int main(int argc,const char *argv[]) #define PATH @"/Users...
分类:其他好文   时间:2014-07-28 15:59:23    阅读次数:397
pyqt标签例子学习
importsysfromPyQt4importQtGuidefmain():app=QtGui.QApplication(sys.argv)window=QtGui.QWidget()window.setWindowTitle(u'标签')tab1=QtGui.QScrollArea()tab_l...
分类:其他好文   时间:2014-07-27 10:18:02    阅读次数:158
python学习——sys.argv
sys.argv[]:用于获取命令行参数,sys.argv[0]即所运行的代码自身的文件路径,因此真正的其他参数是从1开始sys.argv[1]:表示第一个参数sys.argv[1][2:]:表示第二个参数,从第三个字符开始以下为演示程序:cat.py 1 # -*-coding:gb2312-*-...
分类:编程语言   时间:2014-07-26 01:41:06    阅读次数:218
CreateProcess的使用方法
使用编译器vs2008。第一、第二个參数的使用方法:样例:使用ie打开指定的网页。注意第二个參数是 可运行文件+命令行參数#include "stdafx.h"#include #include int main(int argc, char* argv[]) { STARTUPINFO si...
分类:其他好文   时间:2014-07-26 01:11:46    阅读次数:333
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!