c++
11提供了关键字noexcept,用来指明某个函数无法——或不打算——抛出异常:void foo() noexcept; // a function specified as will never throw
void foo2() noexcept(true); // same as foo
void bar(); ...
C语言源代码必须有且只有一个的函数是main函数,我们知道函数可以有参数,那么main函数有没有参数呢?
显然是有的,而且它是固定的,只有两个,第一个是整型变量(argc),第二个是字符型指针数组(argv)。看下面这个例子
FileName: sum.c
Description: Calculate the numbers which from the command line arg