What is nested structure in c?


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

Post New Answer

More C Interview Questions

main() { char x; while(x=0;x<=255;x++) printf("\nAscii value %d Charater %c",x,x); }

2 Answers  


Explain high-order bytes.

0 Answers  


Explain high-order and low-order bytes.

0 Answers  


How does normalization of huge pointer works?

0 Answers  


what are the stoge class in C and tel the scope and life time of it?

2 Answers   Tech Mahindra,






What does a pointer variable always consist of?

0 Answers  


main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }

4 Answers   Vector,


What are the different types of C instructions?

0 Answers   InterGraph,


What is the difference between array and linked list in c?

0 Answers  


Can a binary search tree be used as an index? If yes, how? Explain

0 Answers   TCS,


#include<stdio.h> main(0 { printf("\n %d %d %d",sizeof(3),sizeof("3"),sizeof(3)); }

4 Answers   HCL,


What is static and volatile in c?

0 Answers  


Categories