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


INTERVIEW QUESTIONS LANGUAGES C DETAILS
Question :
main()
{
{
unsigned int bit=256;
printf("%d", bit);
}
{
unsigned int bit=512;
printf("%d", bit);
}
}



Category C Interview Questions
Rating (1.0) By 1 users
Added on 7/18/2006
Views 783
Rate it!
Answers:

Ans is 256,512 because unsigned is data type.blockwise it will print



Here "bit" will be vanished , once it passes the } braces. Between the braces it will consider "bit" as different variable.



 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
main()
{
int x=5;
clrscr();
for(;x<= 0;x--)
{
printf("x=%d ", x--);
}
}


View Answer
main()
{
int x=5;
for(;x!=0;x--) {
printf("x=%dn", x--);
}
}


View Answer
main()
{
int x=5;
clrscr();
for(;x==0;x--) {
printf("x=%dn?", x--);
}
}


View Answer
main()
{
int i =10, j = 20;
clrscr();
printf("%d, %d, ", j-- , --i);
printf("%d, %d ", j++ , ++i);
}


View Answer
void main ()
{
int x = 10;
printf ("x = %d, y = %d", x,--x++);
}


View Answer
main()
{
char c;
int i = 456;
clrscr();
c = i;
printf("%d", c);
}


View Answer
main()
{
int c = 5;
printf("%d", main||c);
}


View Answer
main()
{
int i = 100;
clrscr();
printf("%d", sizeof(sizeof(i)));
}


View Answer
main()
{
printf("%d, %d", sizeof('c'), sizeof(100));
}


View Answer
void func1(int (*a)[10])
{
printf("Ok it works");
}
void func2(int a[][10])
{
printf("Will this work?");
}

main()
{
int a[10][10];
func1(a);
func2(a);
}


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/6006/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.66