edited by
417 views
0 votes
0 votes
What does this following expression means -

*(*(* a[N])())()

Please tell the detailed and simplified version to solve this. I only  know mere basics of DS and programming, but couldn't wrap my head around this.

What topics should I study to solve such type of questions

thank you!
edited by

1 Answer

3 votes
3 votes

Reference link(video):-https://www.youtube.com/watch?v=fPjYdSLI3gk&list=PLS8ACsmFCpmSZQv44y56AviLUbvyriVYh&index=54

http://c-faq.com/decl/spiral.anderson.html

Try out some examples on this:-http://cdecl.org/

edited by

Related questions

0 votes
0 votes
1 answer
1
kallu singh asked Dec 14, 2017
384 views
3 votes
3 votes
2 answers
2
iarnav asked Sep 23, 2015
693 views
How do I solve this Boolean expression?$$(A+B) \cdot (B+C) \cdot (C+A)$$Kindly write the step wise explanation with properties used.
0 votes
0 votes
1 answer
3
Lakshman Bhaiya asked Mar 2, 2018
430 views
What is the output of the following C program?#include<stdio.h #define SQR(x) (x*x) int main() { int a; int b=4; a=SQR(b+2); printf("%d\n",a); return 0; }14361820