For example printf instead of cout, scanf instead of cin, using #define macros, etc?
printf
cout
scanf
cin
#define
Not really, printf() is quite faster than cout, and the c++ iostream library is quite large. It depends on the user preference or the program itself (is it needed? etc). Also, scanf() is not suitable to use anymore, I prefer fgets().
printf()
scanf()
fgets()