edited by
454 views
0 votes
0 votes

https://gateoverflow.in/1343/gate2005-1-isro2017-55

HERE IN THIS QUESTION FOR 4TH OPTION WHAT IS CORRECT DECLARATION ...I AM NOT GETTING FURTHER FROM       

                f(int *)  i m not getting its return part .........................

and how to read  (*) f(int*)

edited by

Please log in or register to answer this question.

Related questions

0 votes
0 votes
1 answer
2
saumya mishra asked May 21, 2018
1,049 views
What is the output of below code?#include<stdio.h Int check(int); Int main() { Int k=35,z; z=check(k); printf("z=%d\n",z); return 0; } int check(int m) { int m; if(m>40) ...
0 votes
0 votes
1 answer
3
Nitesh Choudhary asked Apr 16, 2017
501 views
There are many questions related to size of pointer and it's also depend on machine so anyone tell me source of reading pointer. (for Gate)
1 votes
1 votes
2 answers
4
Akhil01 asked Jul 17, 2016
401 views
Whenever we declare a variable then compiler will not look for other details such as definition of the variable. why is this statement true ?