#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

How do I change visual code font?

0 Answers  


What is the difference between an MLE and an SLE?

1 Answers   Infosys,


Suppose multiple threads accessing a registry key at a time. In that case which synchronization object you will use?

4 Answers   Microsoft,


How many microsoft visual c++ do you need?

0 Answers  


What is the purpose of declaring a variable as unsigned?

2 Answers  






How do you handle drag and drop in ole?

0 Answers  


#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;}

1 Answers  


Do I need ms visual c++ on my computer?

0 Answers  


Name the function is used to transfer bitmaps to an output device?

2 Answers  


Explain the significance of initapplication() in vc++.

0 Answers  


What is the return value when the InsertItem function fails?

2 Answers  


What is microsoft visual c++ runtime library error?

0 Answers  


Categories