#include<stdio.h>
int main()
{
printf("Hello World");
return 0;
}
#include<iostream>
using namespace std;
int main()
{
cout<<"Hello World";
return 0;
}
class hello
{
public static void main(String args[])
{
System.out.println("Hello World");
}
}
print 'Hello World'
<form method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">
<input type="text" name="name" />
<input type="submit" />
</form>
<?php
if (isset($_POST['name']) && $_POST['name'] != "")
{
echo "Hello " + $_POST['name'] + "! Welcome to Digit's Programming Section!";
}
?>
Thank mehulved.Ankur Gupta said:Thanx a lot admins for having a dedicated section...