#include<stdio.h>int(){int a,*b,**c,***d,****e;
a=10;b=&a;c=&b;d=&c;e=&c;printf("a=%d b=%u c=%u d=%
e=%u",a,b,c,d,e);printf
("%d%d%d\n",a,a+?*b,**c+***d+,****e);return0;}



#include<stdio.h>int(){int a,*b,**c,***d,****e; a=10;b=&a;c=&b;d=&c;e=&c;prin..

Answer / yellaiah, navionics technolog

There some syntactical errors are there like:
1. No main()
2. e=&d not e=&c
3. In first printf() d=%u should be there
3. In last printf() '?',','

If we correct these mistakes we get the following:
1.10 someaddress someaddress someaddress someaddress
2.10 20 20

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More VC++ AllOther Interview Questions

What is more efficient to pass as a parameter--a pointer or an object? Why?

1 Answers  


What are some differences between a form view and a dialog box?

2 Answers   DS Group, Manipal Ecommerce,


What is microsoft visual c++ 2015 redistributable package x64?

0 Answers  


What is difference between c++ and vc++?

0 Answers  


Can I remove microsoft visual c++?

0 Answers  






Where can I find microsoft visual c++ on my computer?

0 Answers  


Difference between critical section, mutex and semaphore.

0 Answers  


What function is used to trap all mouse messages?

1 Answers  


Can I uninstall visual c++ 2005?

0 Answers  


Name some examples of the different types of windows found in a Windows application?

4 Answers  


How do I get rid of microsoft visual c++ runtime library error?

0 Answers  


What is the use of message map? Advantages of a message map.

0 Answers  


Categories