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

what is the difference between. system call and library function?

2 Answers   CDAC, Satyam,


write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1

0 Answers  


Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning

4 Answers   Accenture,


What are the advantages of c language?

0 Answers  


tell me the full form of c?

2 Answers  






how to return 1000 variables from functio9n in c?plz give me code also

6 Answers  


who is first prime minister in india??

8 Answers   Wipro,


Can one function call another?

0 Answers  


what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }

4 Answers  


What happens if you free a pointer twice?

0 Answers  


what is the output of below int n=10; (n++)++; printf("%d",n);

3 Answers  


main() { int x, arr[8]={11,22,33,44,55,66,77,88}; x=(arr+2)[3]; printf(ā€œ%dā€,x); }

8 Answers   Vector,


Categories