Answer Posted / hrpynux@gmail.com
The typedef is a keyword used in C programming to provide some meaningful names to the already existing variable in the C program. It behaves similarly as we define the alias for the commands. In short, we can say that this keyword is used to redefine the name of an already existing variable.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the stack in c?
Can we use any name in place of argv and argc as command line arguments?
Explain 'bus error'?
Do pointers need to be initialized?
Explain how do you print only part of a string?
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
What is the use of void pointer and null pointer in c language?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
Explain about block scope in c?
What is include directive in c?
What is hash table in c?
Do you know pointer in c?
program to convert a integer to string in c language'
What are the 3 types of structures?