前提・実現したいこと
C言語で、コマンドライン引数への入力を自分で定義した変数の中に代入したいと思っています。
例えばファイルを実行した際に、.\test.exe filename 198
ファイル名 数字と入力した時に二つ目の引数を変数に代入したいのですがする事ができません。
発生している問題・エラーメッセージ
.\test.c:17:15: warning: assignment makes integer from pointer without a cast [-Wint-conversion] LineCount = argv[2] - '0';
該当のソースコード
C
1#include <stdlib.h> 2#include <unistd.h> 3#include <sys/types.h> 4#include <sys/stat.h> 5#include <fcntl.h> 6#include <errno.h> 7#include <string.h> 8#include <stdio.h> 9 10 11// コマンドラインからの入力を受け取るので、int argc : 引数の個数, char *argv[] : 引数の配列(ポインタ) 12int main(int argc, char *argv[]) { 13 14 int LineCount; 15 LineCount = argv[2] - '0'; 16 17 printf("%d \n",LineCount); 18 19 exit(0); 20}
試したこと
int型とポインタ型で食い違っているので、コマンドライン引数をchar *argv[] → char argv[]
に変更してみたのですが、prinf()の結果はコマンドライン引数の入力を反映していませんでした。
回答2件
あなたの回答
tips
プレビュー