#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;}
Answer Posted / 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 View All Answers
How do I remove microsoft visual c++ 2015 redistributable?
What is cmutex? How can we use it?
How you build a project using Developer Studio?
hello sir i need movie editing and mixing software .where it is available and what is the site address
What is microsoft visual c++ 2015 redistributable package x64?
What is difference between c++ and visual c++?
What is the difference between an MLE and an SLE?
What is vcruntime?
How do you handle drag and drop in ole?
Is microsoft visual c++ a virus?
What is vc++ redistributable?
Where can I find microsoft visual c++?
What is microsoft visual c++ 2005 redistributable?
In which Way invoke context-sensitive help inside the editor?
Explain pointer to the constant and constant pointer? Explain difference between them.