C / C++
C++ programmering (Code reference & info)
C++ code reference (Visual Studio 2015 and later versions)
What The Difference between stdio.h and iostream?
<iostream> is the C++ header for the input / output classes and objects (std::cout, std::cin...).
<stdio.h> is the C header for printf, scanf, ...
In C++, <stdio.h> became <cstdio>
In C++, you are not supposed to use <stdio.h>, use <iostream> instead.