3
I am learning to code in c++, and I would like to know the difference in programming with the library
#include <iostream>
or libraries
#include <stdlib.h>
#include <stdio.h>
One I would use things like std::cout e std::cin
and another I would use printf e scanf
.
I need to know how to program with both or I can follow in one, which in case I was learning from the std::cout
? They have a difference in performance or something?
Duplicates and/or related difference-de-cout-para-printf-em-c, can-replace-o-Cout-e-printf, Cin-vs-scanf-which-is-faster
– Isac