a) Identify the following declarations.
Ex.
int i

(integer variable) float a[l0](array of 10 real nos)


int (*f())()
void *f
int (*f()) []
void *f
int f[] [] []
char *(*f) ()
int (*f[]) []
float(*f) [] []
float **f
int ******f


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Why C language is a procedural language?

0 Answers   Ericsson,


main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }

0 Answers   Wilco,


Determine the result of performing two successive block transfers into the same area of a frame buffer using the binary arith operations

0 Answers  


Why is structure padding done in c?

0 Answers  


User define function contain thier own address or not.

2 Answers  






What is the g value paradox?

0 Answers  


void main() { int *ptr; ptr = (int *) 0x400 ; printf("ptr=%d",ptr); } output?

1 Answers  


How many types of functions are there in c?

0 Answers  


write a program that accepts 3 numbers from the user. dispaly the values in a descending order.

3 Answers  


Where in memory are my variables stored?

0 Answers  


What is a node in c?

0 Answers  


Explain what happens if you free a pointer twice?

0 Answers  


Categories