1/10/00
COM1100-Winter2000-Yuhong Yin Northeastern University
15
cout << "Hello, World\n";
nInvokes library function cout to display output on the screen (standard output device). n–The quoted text string is called a constant string and is displayed as-is. The double quotes are used to delimit the beginning and ending of the constant string and are not considered part of the string. n– The << operator denotes the “put to” or “send to” command.