On Jul 25, 10:11 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>
wrote:
> Thanks a ton both of you Bernd and Paul ! Yes indeed I found that the
> word main was replaced by an empty string. Problem fixed !

pre processing always the first step to happen and single pass
just for experiments
do the following and it will all pass

exp # 1
int main(void){
return 0 ;
}

#ifndef MAIN
#define main
#endif

exp # 2
--------

int main(void){
return 0 ;
}

#ifndef ASDSADAS
#define main main
#endif



_______________________________________________
help-gplusplus mailing list
help-gplusplus@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gplusplus

Reply via email to