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




