What is the use of typedef in structure in c?


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

Post New Answer

More C Interview Questions

Explain Basic concepts of C language?

0 Answers   EXL,


how write a addtion of two single dimensional array using of pointer in c language?

3 Answers   DRDO,


Which is the best sort method for library management?

1 Answers   Microsoft,


Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)

0 Answers  


I have a function which accepts a pointer to an int. How can I pass a constant like 5 to it?

3 Answers  






What is meant by type casting?

0 Answers  


What is sizeof int?

0 Answers  


main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....

2 Answers  


Explain the use of 'auto' keyword in c programming?

0 Answers  


can v write main() { main(); } Is it true?

6 Answers  


What is the use of typedef in structure in c?

0 Answers  


Write a C program that computes the value ex by using the formula ex =1+x/1!+x2/2!+x3+3!+………….

1 Answers  


Categories