What are the different types of data structures in c?


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

Post New Answer

More C Interview Questions

What are examples of structures?

0 Answers  


Juxtapose the use of override with new. What is shadowing?

1 Answers  


6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?

3 Answers  


What is cohesion and coupling in c?

0 Answers  


How can I swap two values without using a temporary?

0 Answers  


What are c header files?

0 Answers  


Explain output of printf("Hello World"-'A'+'B'); ?

0 Answers  


How do you write a program which produces its own source code as its output?

4 Answers  


/*what is the output for the code*/ void main() { int r; r=printf("naveen"); r=printf(); printf("%d",r); getch(); }

1 Answers   CDAC,


how to print a statement in c without use of console statement ,with the help of if statement it should print

2 Answers   Satyam,


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

0 Answers   TCS,


What is the difference between char a[] = "string"; and char *p = "string"; ?

14 Answers   Adobe, Honeywell, TCS,


Categories