I just need the following compiler output for this, plus the compiler you're running, if you don't mind.
Thanks.Code:int main() { _10; }
This is a discussion on How does this compile on your machine? within the C++ Programming forums, part of the General Programming Boards category; I just need the following compiler output for this, plus the compiler you're running, if you don't mind. Code: int ...
I just need the following compiler output for this, plus the compiler you're running, if you don't mind.
Thanks.Code:int main() { _10; }
Code:int main(void){srand(time(0));for(double l=rand(),l0=0,l00=0;;l0+=0.1){for(double l000=0;l000 <1;l000+=.001,l+=((double)rand()/RAND_MAX)/0x64,l00+=((sin(l*0x8*atan(l0)*l000-(l0*0x8*atan (l)))*0.5)+0.5)){l00-=floor(l00);for(size_t l0000=0,l00000=(size_t)(0x50*(l00));l0000<l00000;++l0000 )putchar(0x20);putchar(0x61+(int)((double)rand()/RAND_MAX*0x1a));putchar('\n');}}return 0;}
VC++.NET Standard
__________________________________________________
------ Build started: Project: Test1, Configuration: Debug Win32 ------
Compiling...
main.cpp
c:\Documents and Settings\Administrator\My Documents\Visual Studio Projects\Test1\main.cpp(2) : error C2065: '_10' : undeclared identifier
Build log was saved at "file://c:\Documents and Settings\Administrator\My Documents\Visual Studio Projects\Test1\Debug\BuildLog.htm"
Test1 - 1 error(s), 0 warning(s)
---------------------- Done ----------------------
Build: 0 succeeded, 1 failed, 0 skipped
same thing in DevC++ too....
Undeclared Identifier under Codewarrior
Should it have done something?
Variables and functions that start with _ are supposed
to reserved for the compiler. It's possible it could do something.
>> Should it have done something?
Nope. Well, it should compile with errors, of course...I'm trying to use the compiler errors to display info to the programmer, simplified, something like:
int main(){
RANGE(WHITE_BRUSH);
}
...would give me the total of stock brushes available to a windows application by passing just a single known value. Sounds like macro hell, huh? Anyway, I just wanted to know if the number shows in the error gutter on any given compiler...