Demonstrating shell command-line parameters. シェルの命令行の引数を見本として見せています。

Format
C
Post date
2014-01-30 20:56
Zeitraum der Veröffentlichung
Unbegrenzt
  1. /* Getting a handhold on parameters.
  2. // 引数のつかまり所に手をかける。
  3. // By Joel Rees, January 2014.
  4. // ジョエル リースの2014年1月作。
  5. // Play with it, check out your compiler and your understanding.
  6. // これを使ってコンパイラの動作や自分の理解度をご確認ください。
  7. // いじってみて下さい。
  8. */
  9. #include <stdio.h>
  10. #include <stdlib.h>
  11. int main( int argCount, char * arguments[] )
  12. {
  13. if ( argCount > 2 )
  14. {
  15. double a = strtod( arguments[ 1 ], NULL );
  16. double b = strtod( arguments[ 2 ], NULL );
  17. printf( "%.9g * %.9g == %.9g\n", a, b, a * b );
  18. }
  19. return EXIT_SUCCESS;
  20. }
Download Printable view

URL of this paste

Embed with JavaScript

Embed with iframe

Raw text