For example printf instead of cout, scanf instead of cin, using #define macros, etc?
printf
cout
scanf
cin
#define
What can be used or not only depends on the compiler that will be used. Since you are programming in c++, in my opinion, to maximize compatibility it is better to use what c++ provides instead of c functions unless you do not have any other choices.