如何用c语言写一个hello world

如何用c语言写一个hello world,用java语言,用python,用html用c++

  • C语言
#include<stdio.h>

int main()
{
    printf("hello world"); 
}
  • C++
#include <iostream>
using namespace std;

int main()
{
   cout << "Hello World";
   return 0;
}
  • Java语言
public class HelloWorld {
    public static void main(String []args) {
       System.out.println("Hello World!");
    }
}
  • Python
print("Hello, World!");
  • html
<html>
    <body>
        <div>hello world</div>
    </body>
<html>

c++:

#include <iostream>
using namespace std;
int main() {
    cout << "Hello World" << endl;
    return 0;
}