InterviewSolution
Saved Bookmarks
| 1. |
Which C++ header file(s) are essentially required to be included to run/execute the following C++ code :void main(){char *word1="Hello",*word2="Friends";strcat(word1,word2);cout<<word1;} |
|
Answer» iostream.h string.h |
|