- 2
What is the difference between printf() ;in c and cout<<; in c++?
When I was starting my c++ coarse I thought it?
2 Respostas
+ 3
Each and every languages have its own syntex and rules c is a functional programming language everything is function which is written with round bracket like printf() and this is defined on stdio.h headerfile . Printf is a function while cout is a object which belong to namespace std method which is defined in iostream lib ;
0
A.S.- yes...