CoolInterview.com - World's Largest Collection of Interview Questions
Send Free SMS
 Interview Questions  
 Our Services  


INTERVIEW QUESTIONS LANGUAGES C DETAILS
Question :
const int perplexed = 2;
#define perplexed 3
main()
{
#ifdef perplexed
#undef perplexed
#define perplexed 4
#endif
printf("%d",perplexed);
}



Category C Interview Questions
Rating (0.0) By 0 users
Added on 7/18/2006
Views 606
Rate it!
Answers:

Ans will be two not 4 as that value perplexed is const variable and a const can not be changed



I am sorry to say that though its a const variable we can change its value. I am working on DEVC++ compiler.

I got ans as 4

We are defining the perplexed value outside main().Later inside main, using #ifdef we are checking whether perplexed is defined or not. If it is defined then undefine it using (#undef)and again we are defining it using #define.

Hence the answer is 4.(I worked on on Dev c++)



 Posted by: Syed Baseer Ahmed    

Contact Syed Baseer Ahmed  Contact Syed Baseer Ahmed


If you have the better answer, then send it to us. We will display your answer after the approval.
Name :*
Email Id :*
Answer :*
Verification Code Code Image - Please contact webmaster if you have problems seeing this image code Not readable? Load New Code
Process Verification  Enter the above shown code:*
Inform me about updated answers to this question

   
Related Questions
View Answer
How will you print % character?

View Answer

main()
{
char * strA;
char * strB = I am OK;
memcpy( strA, strB, 6);
}





























View Answer
main()
{
char *p = "hello world";
p[0] = 'H';
printf("%s", p);
}


View Answer
main()
{
int i, j;
scanf("%d %d"+scanf("%d %d", &i, &j));
printf("%d %d", i, j);
}


View Answer
main()
{
int i, j, *p;
i = 25;
j = 100;
p = &i; // Address of i is assigned to pointer p
printf("%f", i/(*p) ); // i is divided by pointer p
}


View Answer
union u
{
union u
{
int i;
int j;
}a[10];
int b[10];
}u;
main()
{
printf("n%d", sizeof(u));
printf(" %d", sizeof(u.a));
// printf("%d", sizeof(u.a[4].i));
}


View Answer
union u
{
struct st
{
int i : 4;
int j : 4;
int k : 4;
int l;
}st;
int i;
}u;
main()
{
u.i = 100;
printf("%d, %d, %d",u.i, u.st.i, u.st.l);
}

View Answer
#define SQR(x) x * x
main()
{
printf("%d", 225/SQR(15));
}


View Answer
main()
{
int i = 0xff ;
printf("n%d", i<<2);
}


View Answer
main()
{
int i;
float *pf;
pf = (float *)&i;
*pf = 100.00;
printf("n %d", i);
}


View Answer

Please Note: We keep on updating better answers to this site. Subscribe to our newsletter to get notified when better answer is posted.

Notify me when better answer is posted!
Email:

View ALL C Interview Questions

User Options
Sponsored Links


Copyright ©2003-2010 CoolInterview.com, All Rights Reserved.
Privacy Policy | Terms and Conditions
Page URL: http://www.coolinterview.com/interview/5991/default.asp?cachecommand=bypass


Download Yahoo Messenger | Placement Papers| FREE SMS | ASP .Net Tutorial | Web Hosting | Free SMS | Dedicated Servers | Joke of the Day

0.73