+ 1
What is header statement
C++
5 Answers
+ 25
Header statement just declares functions which must be implemented in cpp.
+ 1
the header <iostream> ,,,,,This header supports C++ style I/O operation ( <iostream> is to C++ what <stdio.h>is to C). Notice one other thing: there is no .h extension to the name iostream. The reason is the that <iostream> is one of the new style header defined by Standard C++. New-style headers do not use the .h extension.
+ 1
header files are predefined(library) files within compiler that includes the prototype of various functions that we use while coding like stdio.h include printf,scanf etc in c just for example.
0
Header statement is the header file of programmes
0
does header statements implemented any of c or c++ functions