InidBIX.com
Arithmetic Aptitude Data Interpretation
Logical Reasoning Verbal Reasoning
Sudoku Number puzzles Missing letters puzzles Logical puzzles Playing cards puzzles Clock puzzles
C Programming Java Programming
Data Structures Operating Systems Networking DATABASE Database Basics SQL Server Basics SQL Server Advanced SQL Server 2008 JAVA Core Java Java Basics Advanced Java UNIX Unix File Management Unix Memory Management Unix Process Managemnt
Aptitude Test Verbal Ability Test Verbal Reasoning Test Logical Reasoning Test C Programming Test Java Programming Test
Group Disucssion HR Interview Questions Technical Interview Questions Body Language

Exercise

"Do not wait for leaders; do it alone, person to person."
- Mother Teresa

C Programming - Complicated Declarations

@ : Home > C Programming > Complicated Declarations > General Questions
1. 

What do the following declaration signify?

int *f();

A. f is a pointer variable of function type.
B.
f is a function returning pointer to an int.
C. f is a function pointer.
D. f is a simple declaration of pointer variable.

2. 

What do the following declaration signify?

int (*pf)();

A. pf is a pointer to function.
B. pf is a function pointer.
C.
pf is a pointer to a function which return int
D. pf is a function of pointer variable.

3. 

What do the following declaration signify?

char **argv;

A. argv is a pointer to pointer.
B.
argv is a pointer to a char pointer.
C. argv is a function pointer.
D. argv is a member of function pointer.

4. 

What do the following declaration signify?

char *scr;

A. scr is a pointer to pointer variable.
B. scr is a function pointer.
C.
scr is a pointer to char.
D. scr is a member of function pointer.

5. 

What do the following declaration signify?

char *arr[10];

A.
arr is a array of 10 character pointers.
B. arr is a array of function pointer.
C. arr is a array of characters.
D. arr is a pointer to array of characters.



© 2008-2010 by IndiaBIX™ Technologies. All Rights Reserved | Copyright | Terms of Use & Privacy Policy