What is the meaning of int *x[]();?



What is the meaning of int *x[]();?..

Answer / guest

x is a pointer to an array of function which takes no
arguments and returns int

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More C Interview Questions

What is difference between structure and union in c programming?

1 Answers  


how to estimate the disk access time? e.g. the time between read one byte and another byte in the disk.

3 Answers   Google,


which of the following go out of the loopo if expn 2 becoming false a.while(expn 1){...if(expn 2)continue;} b.while(!expn 1){if(expn 2)continue;...} c.do{..if(expn 1)continue;..}while(expn 2); d.while(!expn 2){if(expn 1)continue;..}

4 Answers   TCS,


What is table lookup in c?

1 Answers  


Explain why can’t constant values be used to define an array’s initial size?

1 Answers  


can please someone teach me how to create this program using while statement.. this is the output should look like 0 2 4 6 8 10 -thanks.. :) need it asap...

7 Answers  


In which area global, external variables are stored?

3 Answers  


Can a program have two main functions?

1 Answers  


Given a string write a program to print all alphabetical characters in the order of their occurance first,followed by the sum of the numeric characters then followed by the special characters in the order of their occurance.

1 Answers   College School Exams Tests, Wipro,


Write a program to enter the name and age. If age>28 then find salary categories. if age<28 then find that you are gaduate or not.

1 Answers  


What is wild pointer in c?

1 Answers  


Display names and numbers of employees who have 5 years or more experience and salary less than Rs.15000 using array of structures (name, number, experience and salary)

1 Answers  


Categories