in Programming in C
843 views
0 votes
0 votes

Please convert it to postfix by using stack and explain in detail

void (*bsd_signal(int sig, void (*func)(int)))(int); 

 

 

in Programming in C
843 views

4 Comments

void (*bsd_signal(int sig, void (*func)(int)))(int); 

 

bsd_signal is a function accepting ( sig which is integer datatype and func is a pointer to function which has a integer argument and returning void ) as parameters and return pointer to the function which accepts int as parameter and return void.

 

https://www.geeksforgeeks.org/complicated-declarations-in-c/

or from my book

https://drive.google.com/open?id=1aCnnVZmmSouT-2JjTnLSY0ZzhogalBDB

 

From where you got this question?

0
0
geeksforgeeks but i'm finding it difficult to convert to postfix using stack.
0
0
don't worry about the constraint " using stack "
0
0
ok :p
0
0

Please log in or register to answer this question.

Related questions