在C ++中,scanf()和printf()如何仅与#include <iostream>一起使用?

时间:2019-09-13 13:01:13

标签: c++ iostream

#include <iostream>

int main() {
    int i;
    scanf("%d", &i);
    printf("%d\n", i);
    return 0;
}

这是我在有关c ++问题解决的博客中偶然发现的简化代码。我注意到有一点奇怪,因为我认为scanf()和printf()与stdio.h一起使用。

https://en.cppreference.com/w/cpp/header/iostream:此站点显示iostream中不包含scanf()和printf()。但是,当我将代码复制并粘贴到Visual Studio Code上并在Mac终端上使用gcc对其进行编译时,它可以正常运行。因此,我困惑于scanf()和printf()是否也可以与iostream一起使用。

0 个答案:

没有答案