What do mean by network ?


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

Post New Answer

More C Interview Questions

What is c language & why it is used?

0 Answers  


How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;

2 Answers  


Why c is known as a mother language?

0 Answers  


main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?

1 Answers   GATE,


What is an operator?

0 Answers  






What's the total generic pointer type?

0 Answers  


What is void main ()?

0 Answers  


Explain the difference between exit() and _exit() function?

0 Answers  


Where define directive used?

0 Answers  


Why malloc is faster than calloc?

0 Answers  


What is the purpose of realloc()?

0 Answers  


How does sizeof know array size?

0 Answers  


Categories