18
#include <stdio.h>
#include <stdlib.h>

int main()
{
    int x = 1;

    printf("please make a selection with your keyboard\n");
    sleep(1);
    printf("1.\n");

    char input;
    scanf("%c", &input);
    switch (input) {
        case '1':
            x = x + 1;
            printf(x);
    }
    return(0);
}

変数をそれ自体に追加してから、その変数を出力しようとしていますが、コードを機能させることができないようです。

私の出力エラーは

newcode1.c: In function ‘main’:
newcode1.c:20:2: warning: passing argument 1 of ‘printf’ makes pointer from integer without a cast [enabled by default]
In file included from newcode1.c:1:0:
/usr/include/stdio.h:362:12: note: expected ‘const char * __restrict__’ but argument is of type ‘int’
newcode1.c:20:2: warning: format not a string literal and no format arguments [-Wformat-security]
4

2 に答える 2

32

フォーマットprintf文字列が必要です:

printf("%d\n", x);

このリファレンス ページprintfでは、使用方法と関連する機能について詳しく説明します。

于 2013-05-21T16:46:41.920 に答える