Explain the difference between struct and union.
Answer / nashiinformaticssolutions
• Struct: All members occupy separate memory.
• Union: All members share the same memory.
Is This Answer Correct ? | 0 Yes | 0 No |
Can we write a program without main() function?
What is atoi and atof in c?
what is a void pointer?
What does extern mean in a function declaration?
Explain about the functions strcat() and strcmp()?
What is void main ()?
int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ?
Why c is known as a mother language?
How many levels of pointers have?
Explain how can you avoid including a header more than once?
what is diference between return 0 and return NULL??
Explain the concept and use of type void.