******** In Algorithm ********
Algorithm Begin Write("hello") end Result ==> hello
******** In C ********
#include <stdio.h> int main() { printf("hello"); return 0 ; }
******** In C++ ********
#include <iostream>
using namespace std;
int main() {
cout<<" hello " ;
return 0 ;
}
******** in Python ********
******** in Python ********
print("Bonjour")
******** In JAVA ********class Main {
public static void main(String[] args) {
System.out.println("Hello");
}
}
******** In C# ********
public static void main(String[] args) {
System.out.println("Hello");
}
}