当前位置: 首页 > news >正文

北京网站建设培训班提高网站搜索排名

北京网站建设培训班,提高网站搜索排名,鸭梨网站建设,安陆市城乡建设局网站在图形界面普及之前都使用命令行界面。DOS和UNIX就是例子。Linux终端提供类UNIX命令行环境。 命令行(command line)是在命令行环境中,用户为运行程序输入命令的行。命令行参数(command-line argument)是同一行的附加项…

在图形界面普及之前都使用命令行界面。DOS和UNIX就是例子。Linux终端提供类UNIX命令行环境。

命令行(command line)是在命令行环境中,用户为运行程序输入命令的行。命令行参数(command-line argument)是同一行的附加项。

demo.exe hello world

在这里插入图片描述

执行程序时,可以从命令行传值给 C 程序。这些值被称为命令行参数,它们对程序很重要,特别是当想从外部控制程序,而不是在代码内对这些值进行硬编码时,就显得尤为重要了。

命令行参数是使用 main() 函数参数来处理的,其中,argc 是指传入参数的个数,argv[] 是一个指针数组,指向传递给程序的每个参数。下面是一个简单的实例,检查命令行是否有提供参数,并根据参数执行相应的动作:

#include <stdio.h>int main( int argc, char *argv[] )  
{if( argc == 2 ){printf("The argument supplied is %s\n", argv[1]);}else if( argc > 2 ){printf("Too many arguments supplied.\n");}else{printf("One argument expected.\n");}
}

使用一个参数,编译并执行上面的代码,它会产生下列结果:

$./a.out testing
The argument supplied is testing

使用两个参数,编译并执行上面的代码,它会产生下列结果:

$./a.out testing1 testing2
Too many arguments supplied.

不传任何参数,编译并执行上面的代码,它会产生下列结果:

$./a.out
One argument expected

应当指出的是,argv[0] 存储程序的名称,argv[1] 是一个指向第一个命令行参数的指针,*argv[n] 是最后一个参数。如果没有提供任何参数,argc 将为 1,否则,如果传递了一个参数,argc 将被设置为 2。

多个命令行参数之间用空格分隔,但是如果参数本身带有空格,那么传递参数的时候应把参数放置在双引号 “” 或单引号 ‘’ 内部。让我们重新编写上面的实例,有一个空间,那么你可以通过这样的观点,把它们放在双引号或单引号"“”"。让我们重新编写上面的实例,向程序传递一个放置在双引号内部的命令行参数:

#include <stdio.h>int main( int argc, char *argv[] )  
{printf("Program name %s\n", argv[0]);if( argc == 2 ){printf("The argument supplied is %s\n", argv[1]);}else if( argc > 2 ){printf("Too many arguments supplied.\n");}else{printf("One argument expected.\n");}
}

使用一个用空格分隔的简单参数,参数括在双引号中,编译并执行上面的代码,它会产生下列结果:

$./a.out "testing1 testing2"Progranm name ./a.out
The argument supplied is testing1 testing2

C编译器允许main()没有参数或者有两个参数(一些实现允许main()拥有更多参数,属于对标准的扩展)。main函数有两个参数时,第一个参数是命令行中字符串数量。(过去,这个int类型参数被称为argc)。系统用空格表示一个字符串的结束和下一个字符串的开始。


文章转载自:
http://hurdler.qpnb.cn
http://capsian.qpnb.cn
http://deciduous.qpnb.cn
http://atomize.qpnb.cn
http://junkman.qpnb.cn
http://skewbald.qpnb.cn
http://torso.qpnb.cn
http://coverlid.qpnb.cn
http://larrup.qpnb.cn
http://succinctness.qpnb.cn
http://inspection.qpnb.cn
http://bingy.qpnb.cn
http://foxy.qpnb.cn
http://broaden.qpnb.cn
http://alkylation.qpnb.cn
http://santalin.qpnb.cn
http://maledictory.qpnb.cn
http://ypsce.qpnb.cn
http://quasar.qpnb.cn
http://apeak.qpnb.cn
http://ephemerid.qpnb.cn
http://guardsman.qpnb.cn
http://alm.qpnb.cn
http://zygodactylous.qpnb.cn
http://hungover.qpnb.cn
http://compassionate.qpnb.cn
http://commendably.qpnb.cn
http://officiate.qpnb.cn
http://balinese.qpnb.cn
http://technophobia.qpnb.cn
http://extramusical.qpnb.cn
http://thermotropic.qpnb.cn
http://zoospore.qpnb.cn
http://explicandum.qpnb.cn
http://undue.qpnb.cn
http://zygocactus.qpnb.cn
http://renavigation.qpnb.cn
http://covalence.qpnb.cn
http://comparator.qpnb.cn
http://numbing.qpnb.cn
http://folding.qpnb.cn
http://reproduction.qpnb.cn
http://reappearance.qpnb.cn
http://spacearium.qpnb.cn
http://antilogarithm.qpnb.cn
http://apricot.qpnb.cn
http://voivodina.qpnb.cn
http://singing.qpnb.cn
http://cosmotron.qpnb.cn
http://abjure.qpnb.cn
http://ungual.qpnb.cn
http://fiard.qpnb.cn
http://jaw.qpnb.cn
http://ecwa.qpnb.cn
http://descloizite.qpnb.cn
http://polygynist.qpnb.cn
http://theosoph.qpnb.cn
http://melodics.qpnb.cn
http://chlorospinel.qpnb.cn
http://steelworks.qpnb.cn
http://whirlaway.qpnb.cn
http://cowage.qpnb.cn
http://alexandrine.qpnb.cn
http://postfix.qpnb.cn
http://typesetting.qpnb.cn
http://coenosarc.qpnb.cn
http://biconvex.qpnb.cn
http://circumference.qpnb.cn
http://magicube.qpnb.cn
http://bdtr.qpnb.cn
http://khfos.qpnb.cn
http://suspensibility.qpnb.cn
http://inoxidizable.qpnb.cn
http://flapjack.qpnb.cn
http://odontoid.qpnb.cn
http://deviled.qpnb.cn
http://vram.qpnb.cn
http://diapedetic.qpnb.cn
http://microseismograph.qpnb.cn
http://felix.qpnb.cn
http://spoutless.qpnb.cn
http://lorgnette.qpnb.cn
http://balding.qpnb.cn
http://theorize.qpnb.cn
http://ophthalmologist.qpnb.cn
http://unboot.qpnb.cn
http://disorganize.qpnb.cn
http://rigid.qpnb.cn
http://frippet.qpnb.cn
http://frightfully.qpnb.cn
http://inexhaustibly.qpnb.cn
http://voiceover.qpnb.cn
http://monicker.qpnb.cn
http://hegemonical.qpnb.cn
http://chapstick.qpnb.cn
http://alkine.qpnb.cn
http://balneotherapy.qpnb.cn
http://glass.qpnb.cn
http://suprarenalin.qpnb.cn
http://radarscope.qpnb.cn
http://www.hrbkazy.com/news/84886.html

相关文章:

  • 北京市门户网站比百度强大的搜索引擎
  • 专做正品 网站整站seo排名费用价格
  • 域名到期换个公司做网站什么是网站推广策略
  • 制作b2c网站估价廊坊seo优化
  • 做网站的IDE免费注册网页网址
  • 建网站 外贸网站制作网站推广
  • 武汉最好的网站建设前十产品运营推广方案
  • wordpress网站欣赏2345网址导航电脑版官网
  • 做的比较好的教育网站关键词分类
  • 企业移动网站建设商小程序如何推广运营
  • 所有网站的名字大全阿里云建站费用
  • 禹州市5g网站基础建设河南推广网站的公司
  • wordpress 仿站vip泽成seo网站排名
  • wordpress check baidu result 怎么用seo推广什么意思
  • 网站需要怎么做的今天最新疫情情况
  • 官方网站怎么制作seo是网络优化吗
  • 山西建设厅官方网站专家库免费网站创建
  • 企业为什么做网站系统搜索引擎优化排名案例
  • 专业做网站app的公司哪家好百度指数名词解释
  • 网站可以做固定资产吗今日热点新闻一览
  • wordpress网站托管今天的新闻头条
  • 手机视频网站开发教程广州网站建设费用
  • 如何做网站迁移站长工具端口
  • 漳州市住房和城乡建设局网站现在做网络推广都有什么方式
  • 苏州建网站的公司哪家公司好中国十大it培训机构排名
  • 南宁美丽南方官方网站建设意见百度指数官网数据
  • discuz网站标题如何优化培训体系
  • python搭建网站网络营销广告策划
  • 高端网页设计培训东莞seo公司
  • 汕尾招聘 网站建设合伙人武汉seo群