User profile: long double main

User info
User name:long double main
Location:Michigan, USA
Bio:You just lost The Game.
Nice job. *slow clap*

// Yes, this actually compiles.
#define long int
#define double
long double main()
{
return 0.0L;
}
(Note: don't do this at home, obviously.)
Even without the preprocessor hacks, it still compiles as C code: http://coliru.stacked-crooked.com/a/901ec1fab3065a3c

100th post: http://www.cplusplus.com/forum/beginner/65259/#msg353460
200th post: http://www.cplusplus.com/forum/beginner/116603/#msg636510
300th post: http://www.cplusplus.com/forum/beginner/118507/#msg646105
400th post: http://www.cplusplus.com/forum/beginner/121643/#msg662458
500th post: http://www.cplusplus.com/forum/lounge/122612/#msg668206
600th post: http://www.cplusplus.com/forum/beginner/124181/#msg675188
700th post: http://www.cplusplus.com/forum/beginner/125556/#msg680879
800th post: http://www.cplusplus.com/forum/beginner/128581/#msg694926
900th post: http://www.cplusplus.com/forum/general/131846/#msg710043
Wow, seems that I help out in the beginner forums much more than the General C++ Programming forum. I wonder what that says about me....

(Don't worry; after post #1000, I'll start going in increments of 1000 instead of 100, so this page won't fill up with pages of links to random posts.)
Statistical data
Birthdate:May 30, 1997
Gender:Male
Occupation:Student
Skills:C++
Python
Whatever you call that TI-83/84+ calculator language
History
Joined:
Number of posts:999
Latest posts:

pointers, array, functions
[quote=danicpp]but in main(){} I guess we don't need to mention void cause actually I don't and it c...

Please help debug simple tutorial code
Initialize [tt]total[/tt] [i]after[/i] you input values for [tt]x[/tt] and [tt]y[/tt], not before. ...

Please help debug simple tutorial code
[code firstline=20]int x = 1; int y = 1; int total = x + y; // Sets total to 2 (1 + 1)[/code][tt]tot...

printing a pointer to function & changing return value of the function
Why you would even think about doing this, I have no clue. But here's a way: [code]#include <iostrea...

Random Numbers Generator Question
Okay, if it [i]really[/i] matters (actually, something like this is what you should be using already...