Dec 10 2005 01:41 PM 6435 9 }"> const int perplexed = 2;#define perplexed 3main(){ #ifdef perplexed #undef perplexed #define perplexed 4 #endif printf("%d",perplexed);} A) none of the aboveB) 4C) 2D) 0 indira.moparthi Profile Answers by indira.moparthi Questions by indira.moparthi Apr 19th, 2009 Perplexed is a const variable. In the # define we are trying to modify the value which leads to an error. bijosh.t Profile Answers by bijosh.t Questions by bijosh.t Feb 27th, 2008 Perplexed will be replaced by the preprocessor by 4 Answer Question Select Best Answer
Dec 10 2005 01:41 PM 6435 9 }"> const int perplexed = 2;#define perplexed 3main(){ #ifdef perplexed #undef perplexed #define perplexed 4 #endif printf("%d",perplexed);} A) none of the aboveB) 4C) 2D) 0 indira.moparthi Profile Answers by indira.moparthi Questions by indira.moparthi Apr 19th, 2009 Perplexed is a const variable. In the # define we are trying to modify the value which leads to an error. bijosh.t Profile Answers by bijosh.t Questions by bijosh.t Feb 27th, 2008 Perplexed will be replaced by the preprocessor by 4 Answer Question Select Best Answer
indira.moparthi Profile Answers by indira.moparthi Questions by indira.moparthi Apr 19th, 2009 Perplexed is a const variable. In the # define we are trying to modify the value which leads to an error.
bijosh.t Profile Answers by bijosh.t Questions by bijosh.t Feb 27th, 2008 Perplexed will be replaced by the preprocessor by 4