[Note]一些小坑点
Posted wyxwyx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Note]一些小坑点相关的知识,希望对你有一定的参考价值。
scanf
一个有趣的现象:如果用%lld或%I64d写入int的话,会出现一些神奇的现象,大概是因为强制写入了64位从而访问到了非法内存。
小例子:
#include <cstdio>
int a[3];
int main() {
a[0] = a[2] = 2;
scanf("%lld", &a[1]);
printf("%d %d %d", a[0], a[1], a[2]);
}
/*
input : 1
output : 2 1 0
input : 1000000000000
output : 2 -727379968 232
*/
以上是关于[Note]一些小坑点的主要内容,如果未能解决你的问题,请参考以下文章