84bed64f7a7dd63c40c717a404fd8177

lfnet

New Member
Messages
12
Reaction score
0
Points
0
Hello World
A Programmers obligatory introduction...
---------------------------------------
and an md5 sum, so you can check that someone's not messing with your data in transit :lockd:
84BED64F7A7DD63C40C717A404FD8177
 

ƒorte

New Member
Messages
980
Reaction score
0
Points
0
<?php
echo "Welcome to x10hosting.com! &nbsp"."I hope you enjoy your stay here!"
?>

(A php user's welcome :))
 

Jacob

New Member
Messages
1,146
Reaction score
0
Points
0
Welcome to x10Hosting. I hope you enjoy it here. If you have any questions, please ask!
--
Err, an x10Hosting account manager's welcome.
 

lfnet

New Member
Messages
12
Reaction score
0
Points
0
PHP! And maybe in the future (for me) Python! And C++!

C++ (may have small errors...haven't used this in a long while):
#include <stdio>
int main(){
printf("Welcome to C++");
return 0;
}
 

noerrorsfound

New Member
Messages
1,736
Reaction score
1
Points
0
lfnet said:
PHP! And maybe in the future (for me) Python! And C++!

C++ (may have small errors...haven't used this in a long while):
#include <stdio>
int main(){
printf("Welcome to C++");
return 0;
}
That's C, not C++. It's not even valid C, because in C you're required to include the ".h".
 

lfnet

New Member
Messages
12
Reaction score
0
Points
0
That is C++! Ok, some things don't need a .h in C++; I always have to use a reference to remember which ones though. You do know how similar the two are right?
Should have used #include <iostream>, because that works fine without .h. And then I could use cout, which is C++ only

Code:
 #include <stdio.h>
using namespace std;
int main(){
printf("Welcome to C++");
return 0;
}

There, that make you happy? It compiles with g++. Most C code is valid C++ code, you know, except for stuff like this:
c++; //equivalent to c = c + 1; also this quote, I think, is incompatible.
Actually, the above line is valid C++ code, and invalid C code

Oh, by the way... Errors Found! in your post.
 
Last edited:

wasif

New Member
Messages
34
Reaction score
0
Points
0
lol wahs up wid ur name
newaizz welcome to the forums man
 

lfnet

New Member
Messages
12
Reaction score
0
Points
0
My name? its 1337 F337, (or leet feet, I'm not someone who mandates that all letters must be replaced with numbers)
 

Conor

New Member
Messages
3,570
Reaction score
0
Points
0
*sigh....welcome.

----------
A tired staff members welcome.
 

TarinC

New Member
Messages
698
Reaction score
0
Points
0
i couldnt reverse the md5 sum of the topic name... w.e here is the md5 sum for ur name:
"lfnet" "f1b43eeea8337d3ca5158d8b605dcd51"
 
Top