User profile: long double main

User info
User name:long double main
Location:Michigan, USA
Bio:#define long
#define double int
long double main()
{
return static_cast<long double>(0.0L);
}

100th post: http://www.cplusplus.com/forum/beginner/65259/#msg353460
History
Joined:
Number of posts:159
Latest posts:

infinite while loop
Get rid of the do/while loop. So then you would just have: [code]for (a = 1; a <= c; a++) { cou...

Classes
@L B: Eh, okay... [code]cin.ignore(numeric_limits<streamsize>::max(), '\n');[/code] (of course, you...

Classes
You left a newline in the input buffer after doing [code]cin>>ob.n;[/code], so a blank string got re...

Classes
[quote=my compiler]In function 'void set(dat)': 29:17: error: 'gets' was not declared in this scope[...

Guess my number game problem
[code]#include <iosteam>[/code] Typo. [code]int myNumber,;[/code] You had an extra comma in there. ...