Demonstrating shell command-line parameters. シェルの命令行の引数を見本として見せています。
- /* Getting a handhold on parameters.
- // 引数のつかまり所に手をかける。
- // By Joel Rees, January 2014.
- // ジョエル リースの2014年1月作。
- // Play with it, check out your compiler and your understanding.
- // これを使ってコンパイラの動作や自分の理解度をご確認ください。
- // いじってみて下さい。
- */
- #include <stdio.h>
- #include <stdlib.h>
- int main( int argCount, char * arguments[] )
- {
- if ( argCount > 2 )
- {
- double a = strtod( arguments[ 1 ], NULL );
- double b = strtod( arguments[ 2 ], NULL );
- printf( "%.9g * %.9g == %.9g\n", a, b, a * b );
- }
- return EXIT_SUCCESS;
- }