关于dev c ++:Dev C不断返回错误的值

Dev C keeps returning a wrong value

1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>
#include <stdlib.h>
main()
{
    int n;
    printf("Introduce un número entero
"
);

    scanf("%d", &n);
    printf("Has introducido el número: %d", &n);
}

每次运行这个C代码时,我都会得到6487628的N代码,我一次又一次地卸载和安装它,它一直在这样做,我不知道还能做什么。


您不需要printf()中的&n,您需要n。您显示的内存位置n存储在