printf (“Hello, World!\n”) ;
This is the function printf ( ) being called with a single argument, namely the string “Hello, World!\n”
Even though a string may contain many characters, the string itself should be thought of as a single quantity.
Notice that this line ends with a semicolon. All statements in C end with a semicolon.