1.

How are comments included in C++? Give an example.

Answer»

Comments are included using//

For example, main()

{ cout<< “Hello World”; // prints Hello World

return 0;

}



Discussion

No Comment Found