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
Why doesnt that code work?
Is there a way to jump out of a function or functions?
Explain how are 16- and 32-bit numbers stored?
why 'c' is called middle level language.
How would you find a cycle in a linked list?
which of the function operator cannot be over loaded a) <= b)?: c)== d)*
10 Answers Cisco, CTS, Google, HCL, HP,
while running a program, i got the msg that press return key to exit.what that mean in C as there are no such options as far i know.
how to sort two array of characters and make a new array of characters.
What is bash c?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
What is void main ()?
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }