I'm learning to program in c ++, and I'd like to know the difference between programming with the library
#include <iostream>
or the libraries
#include <stdlib.h>
#include <stdio.h>
One would use things like std::cout e std::cin
and another would use printf e scanf
.
I need to know how to program with the two or can I go on only one, which in the case I was learning with std::cout
? Do they have a difference in performace or something?