0
How to use cout and cin in C language?
4 ответов
+ 4
there's no cin or cout in C because the header file iostream was introduced in c++.
use scanf and printf instead in the header file stdio.h
0
than you
0
np ☺
0
cin and cout aren't applicable to c language because of the conflicting header statement .if using c use printf in place of cout and scanf for cin.