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

Describe the order of precedence with regards to operators in C.

0 Answers  


Which command is more efficient? *(ptr+1) or ptr[1]

3 Answers  


Does * p ++ increment p or what it points to?

0 Answers  


Difference between malloc() and calloc() function?

0 Answers  


What is %d called in c?

0 Answers  






#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

2 Answers   Facebook,


Explain main function in c?

0 Answers  


What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }

0 Answers   Google,


I have an array of 100 elements, each of which is a random integer. I want to know which of the elements: a) are multiples of 2 b) are multiples of 2 AND 5 c) have a remainder of 3 when divided by 7

1 Answers  


how to make c program without a libary? e.g.#include<stdio.h> libary is not in c progaram.

2 Answers  


Why does not c have an exponentiation operator?

0 Answers  


What is a function in c?

0 Answers  


Categories