Answers for "how does string string work c++"

C++
0

c++ write string

#include <iostream>

int main() {
	std::cout << "Hello" << std::endl; //endl = end line/new line
    // or
    printf("hello");
    
}
Posted by: Guest on March-02-2020

Code answers related to "how does string string work c++"

Browse Popular Code Answers by Language