New Programming Section

Status
Not open for further replies.

azzu

AJJU
looks like we got a new section in digit forum
so all the programming guys yell
start ur programming tut's :D
 
OP
azzu

azzu

AJJU
Re: Woohoo!!First one to post here!!!

i also wanted to start the first thread here but thought mod's will take it seriously so started thread in CHIT CHAT (check it)
yup start ur programming tut's guys
show ur skill's
wew
 

QwertyManiac

Commander in Chief
Re: Woohoo!!First one to post here!!!

Aww bad, you should've inaugurated it with a "Hello World"

Let me do the honors. ;)

C
Code:
#include<stdio.h>

int main()
{
    printf("Hello World");
    return 0;
}
C++
Code:
#include<iostream>

using namespace std;

int main()
{
    cout<<"Hello World";
    return 0;
}
Java
Code:
class hello
{
    public static void main(String args[])
    {
        System.out.println("Hello World");
    }
}
Python
Code:
print 'Hello World'
That's all folks ;)

Heh, purpose was to show which one is the lengthiest :p

Quick, create a sticky on battle of the languages :p
 
Last edited:

[xubz]

"The Cake is a Lie!!"
Re: Woohoo!!First one to post here!!!

PHP:
<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!";
}
?>

The First PHP Code :D
 

Gigacore

Dreamweaver
Re: Woohoo!!First one to post here!!!

^ lol, awesome. . . dont you think my thread 'post ur c/c++ here' should be moved from tutorials to here and make it sticky?
 

Gigacore

Dreamweaver
Re: Woohoo!!First one to post here!!!

lol my thread is moved here and is the first sticky thread in this section
 

Asfaq

Keyboard addict
Re: New section ??

yep, also plz notify us of the threads that need to be moved into the programming section, you can send us a pm once you have identified 10 such threads... getting one pm for each thread would be a total pain i guess.

have fun ppl :)
 

QwertyManiac

Commander in Chief
Re: Woohoo!!First one to post here!!!

I got a doubt ... Why are all threads coming up as "All Queries Here", heh. Its a full blown section, hope people don't force others to post only under these kind of threads. :)
 

QwertyManiac

Commander in Chief
Re: New section ??

C puzzles *www.thinkdigit.com/forum/showthread.php?t=70697
Lesser known facts in C *www.thinkdigit.com/forum/showthread.php?t=71047
Some random Java query *www.thinkdigit.com/forum/showthread.php?t=70834
Real power of C *www.thinkdigit.com/forum/showthread.php?t=69321
TSR in C *www.thinkdigit.com/forum/showthread.php?t=69231

People can add more to this list and submit to Asfaq when it's >= 10 ;)
 

Asfaq

Keyboard addict
Re: New section ??

ah! this will make a busy few days i guess... rather than pm'ing me, you can post all the thread URL's here and i'll move em to programming. That way, we wont flood the PM system too and other mods can chip in too.
 

Ankur Gupta

Wandering in time...
Re: New section ??

Thanx a lot admins for having a dedicated section...
A lot(almost 90%) of members are college/school guys so its a real boon for them..
 

drgrudge

Another Brick in the Wall
Re: New section ??

Haha.. we have "Woohoo!!First one to post here!!!", "Post your [enter something here] queries here" already. Merging one thread posted in here.

Post threads that should be in that section. I'll (and other mods) will move them as and when we find time.


Thread Merged

Ankur Gupta said:
Thanx a lot admins for having a dedicated section...
Thank mehulved. :D
 
Last edited:
Status
Not open for further replies.
Top Bottom