print hello world ? in c language
Answer (1)
Hi there,
#include <iostream>
using namespace std;
int main() {
string greeting = "Hello, World!";
cout << greeting << endl;
return 0;
}
Hope this info helps!
Comments (0)




